python课后习题汇总 (实验10)

1.利用 turtle 库,绘制一个风轮效果,如附图 10-3 所示。其中,每个风轮内角为45°风边长为150像素。

import turtle as t
t.setup(800,400,200,200)
t.pensize(3)
for i in range(4):
    t.seth(135+i*90)
    t.fd(150)
    t.right(-90)
    t.circle(150,45)
    t.right(-90)
t.fd(150)
t.mainloop()
t.bye()

python课后习题汇总 (实验10)_第1张图片

你可能感兴趣的:(python)