潘石屹用Python解决100个问题 | 葵花绘图

程序的主要逻辑部分是2层循环。2个循环的内循环,是画一个正方形 即画笔向前画100个像素,形成一条边。然后画笔转动90度,是个直角,再画100个像素,形成第二条边。这样话4次就组成了一个正方形。 而外层的循环,每次沿顺时针方向移动10度,然后再调用内层循环画正方形。

潘石屹用Python解决100个问题 | 葵花绘图_第1张图片

代码:

import turtle
import time
myPen=turtle.Pen()
myPen.speed(0)
myPen.pencolor('red')
myPen.fillcolor('yellow')
myPen.begin_fill()
for i in range(36):
    for j in range(4):
        myPen.forward(100)
        myPen.left(90)
    myPen.right(10)
myPen.end_fill()
time.sleep(10)

 

你可能感兴趣的:(#)