python的turtle库是一个海龟绘图模块,海龟绘图源自20世纪60年代的logo语言,今天作为一个非常方便的python模块,我们只需要通过简单的import便可以在python中使用海龟绘图了。下面我们简单了解一下turtle的功能函数:
forward() / fd() 向前
backward() / bk() / back() 向后
right() / rt() 向右转角度
left() / lt() 向左转角度
goto() 去到某坐标
speed() 速度
home() 初始原点
circle() 画圆
pendown() / pd() / down() 下笔
penup() / pu() / up() 提笔
pensize() / width() 笔宽度
color()
pencolor()
fillcolor() 颜色
filling()
begin_fill()
end_fill() 填充
bgcolor() 背景颜色
screensize() 窗口大小
clear() / clearscreen() 删除绘画
reset() / resetscreen() 重置
colormode() 颜色模式
bye() 关闭窗口
这是网友用turtle画的小猪佩奇,非常可爱,代码见下方链接。
想学习更多更细的操作,请查看官方文档,见下方链接。
https://docs.python.org/3.3/library/turtle.html?highlight=turtle#overview-of-available-turtle-and-screen-methods
https://blog.csdn.net/shuryuu/article/details/82621042