Python turtle 绘图入门必知必会(3)

from turtle import * speed(0) bgcolor("white") pencolor("MediumAquamarine") h = 10 for j in range(360): for i in range(4): forward(h) right(90) right(3) h = h*1.01 turtle.done()

Python turtle 绘图入门必知必会

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/c9b9c44f714c8acdda30a6133e5b2618.html