赞
踩
import turtle----------导入turtle
turtle.showturtle()----------显示画笔
turtle.hideturtle()----------隐藏画笔
turtle.speed(数值)----------画笔的速度
turtle.pensize(数值)----------画笔的大小
turtle.color(“颜色”)----------画笔的颜色
turtle.forward(数值)----------画笔向箭头的方向移动
turtle.backward(数值)----------画笔向箭头的反方向移动
turtle.left(角度)----------向左调整角度
turtle.right(角度)----------向右调整角度
turtle.goto(坐标)----------画笔到指定坐标
turtle.penup()----------抬起画笔,不会在画布上留下痕迹
turtle.pendown()----------落下画笔,开始画画
turtle.circle(半径)----------画一个圆
import turtle turtle.speed(10) turtle.pencolor("blue") turtle.pensize(10) turtle.circle(50) turtle.penup() turtle.goto(120,0) turtle.pendown() turtle.pencolor("black") turtle.circle(50) turtle.penup() turtle.goto(242,0) turtle.pendown() turtle.pencolor("red") turtle.circle(50) turtle.penup() turtle.goto(60,-50) turtle.pendown() turtle.pencolor("yellow") turtle.circle(50) turtle.penup() turtle.goto(180,-50) turtle.pendown() turtle.pencolor("green") turtle.circle(50)
在使用turtle的过程中,碰到的问题。
程序运行出现错误,提示:AttributeError: module ‘turtle’ has no attribute ‘color’
解决方法:新建了turtle.py的文件,删掉就可以了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。