海龟绘图
海龟绘图画图比较简单,主要使用python的turtle
模块, 就是通过编程指挥一个小海龟在屏幕上前进和左转右转。
forward
: 向前走,可以指定一个距离
left
:左转,指定一个角度
right
:右转,指定一个角度
circle
:画圆
reset
:重置
根据上面的说明我们可以简单的绘制一个五角星:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| import turtle t = turtle.Pen() for x in range(5): t.forward(100) t.right(145) turtle.done() ```
![海龟绘图](/img/assets/42/01_marked.png)
绘制螺旋阵:
``` python import turtle import time turtle.pensize(2) turtle.bgcolor("black") turtle.tracer(False) turtle.color("white") for x in range(400): turtle.forward(2*x) turtle.left(60) turtle.tracer(True) turtle.done()
|
更多的方法的说明可以看官方教程