Python的turtle库是一个用于绘制图形的库。
举例:
import turtle
turtle.bgcolor('white')
turtle.width(2)
sides=5
colors=["red","yellow","blue","orange","green","purple"]
for x in range(60):
turtle.pencolor(colors[x%sides])
turtle.forward(x*2)
turtle.left(360/sides+1)
运行结果:
turtle库的优缺点
1. 优点
(1)指令简单易懂,适合初学者学习。
(2)可以快速地看到代码的效果。
(3)可以绘制各种图形,应用范围广泛。
2. 缺点
(1)turtle库绘图速度较慢,不适合绘制复杂图形。
(2)turtle库的功能较为简单,不适合高级用户使用。
(3)turtle库的可定制性较差,不适合制作高级应用。
turtle库的基本指令
1. 前进和后退:
turtle.forward(distance) # 前进distance个像素
turtle.backward(distance) # 后退distance个像素
2. 转向:
turtle.left(angle) # 左转angle度
turtle.right(angle) # 右转angle度
3. 画笔颜色:
turtle.pencolor(color) # 设置画笔颜色,color可以是字符串或RGB元组
4. 画笔宽度:
turtle.pensize(width) # 设置画笔宽度,width为正整数
二、turtle库的进阶指令
除了基本指令外,turtle库还有许多进阶指令,例如画圆、填充等等。
1. 画圆:
turtle.circle(radius, extent=None) # 画一个半径为radius的圆,extent为圆弧的角度
2. 填充:
turtle.begin_fill() # 开始填充
turtle.fillcolor(color) # 设置填充颜色
turtle.end_fill() # 结束填充