import random
tt.speed(100)
tt.hideturtle()
def squre_center(long):
tt.penup()
tt.forward(long/2)
tt.left(90)
tt.pendown()
tt.color('red')
tt.forward(long/2)
def zuozhuanqianxing(color):
tt.left(90)
tt.color(color)
tt.forward(long)
zuozhuanqianxing('blue')
zuozhuanqianxing('green')
zuozhuanqianxing('orange')
tt.left(90)
tt.color('red')
tt.forward(long/2)
tt.right(90)
tt.penup()
tt.backward(long/2)
tt.pendown()
r = 700
while r > 1:
squre_center(r)
tt.left(5)
r -= 5
tt.exitonclick()
tt.done()
python怎么画正方形 python画正方形旋转30次
转载文章标签 python怎么画正方形 python画正方形旋转 ide 文章分类 Python 后端开发
-
如何用PYTHON代码编辑gif,正方形变圆形
使用python 将正方形的图标gif,转换成圆形gif.
Image python gif Pillow