使用time模板的sleep()函数,实现暂停一秒输出

使用time模板的sleep()函数,实现暂停一秒输出

import turtle,time
turtle.penup()
turtle.goto(50,50)
turtle.pendown()
turtle.begin_fill()
for i in range(5):
    time.sleep(1)
    turtle.forward(100)
    turtle.right(144)

你可能感兴趣的:(Python语言程序设计,examples,python)