Turtle库是Python语言中一个很流行的绘制图像的函数库。
安装turtle库:pip install turtle
安装turtle提示错误:Command "python setup.py egg_info" failed with error code 1
解决办法:按指定链接下载turble压缩包,手动解压,修改setup.py文件再安装。
1、打开setup.py文件,第40行修改为
except (ValueError, ve):
原来的是Python2的写法,没有括号,加了括号之后Python3就能用了。
2、用pip3安装:pip install -e D:\turtle-0.0.2
-e
后面接上我们修改过setup.py
文件的目录。
3、过程中会报错 Failed building wheel for Twisted
4、需要我们自己下载Twisted,然后安装。这里有Python的各种依赖包。选择适合自己Python以及系统的Twisted版本。 http://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted 下载好之后,cd到下载文件夹。pip install Twisted的文件名。
5、重新执行步骤2
turtle.width()和turtle.pensize()都可以用来设置画笔尺寸
turtle.penup()
抬起笔移动,海龟飞行,不绘制图形;没有参数
turtle.pendown()
落下画笔,海龟在爬行;没有参数
turtle.done()
用来停止画笔绘制,但绘图窗体不关闭;没有参数
import turtle
turtle.setup(width, height, startx, starty)
turtle
库中goto(x, y)
方法,画出从当前位置到坐标点(x, y)
的直线。turtle.circle(r,angle)
:r > 0
圆心在海龟的左侧 r 处r < 0
圆心在海龟的右侧 r 处angle > 0
海龟向前爬,转angle度angle < 0
圆心向后爬,转angle度