harry-用while循环画对称图形

更多内容可以联系少儿编程侯老师,微信data_ecology
本文链接: https://blog.csdn.net/houlaos/article/details/102595810

··
import turtle
turtle.speed(0)
a = 0
while a < 1000:
a = a+1
turtle.fd(a)
turtle.right(a)
turtle.done()

·
·
·

猜你喜欢

转载自blog.csdn.net/houlaos/article/details/102595810