写一段Python代码生成龙卷风
时间: 2023-03-14 09:03:59 浏览: 252
龙卷风代码.html
# 代码如下:
import turtle
t = turtle.Turtle()
t.penup()
t.speed(10)for i in range(36):
t.forward(200)
t.right(170)
t.forward(80)
t.right(90)
t.forward(80)
t.right(170)t.done()
阅读全文
龙卷风代码.html