只要用户输入yes,它就会重复20次。有一个随机的颜色。随机宽度(1 到 20 之间)。-300 和 300 之间的随机 x 坐标,-230 和 230 之间的随机 y 坐标。用笔向下,转到 x 和 y 坐标。我可以快速解释一下如何做到这一点这是我的尝试(我知道它错了)
turtle.width(5)
def f(input):
if input == "yes":
if x>20:
xc = randrange(-300, 301)
yc = randrange(-231, 231)
turtle.width(randrange(1,21))
turtle.pendown()
turtle.up()
turtle.goto(0,0)
turtle.down()
turtle.color(randcolor)
return x-1