星星重做

import turtle
 
while True:
    turtle.forward(150)
    turtle.right(100)
    if abs (turtle.pos())<1:
        break
 
turtle.done()

  

猜你喜欢

转载自www.cnblogs.com/TANJINGTIAN/p/9036326.html