while循环与 for循环

print("Hello, world! My name is type your name")
import turtle

while True:
    turtle.forward(140)
    turtle.right(170)
    if abs(turtle.pos())<1:
        break

turtle.done()

猜你喜欢

转载自www.cnblogs.com/guanxunche/p/9036212.html