你如何在Python中同时绘制两只乌龟?

时间:2016-10-05 16:34:31

标签: python turtle-graphics

你如何让两只乌龟一次吸引?我知道如何让乌龟画画以及如何制作两个或更多,但我不知道如何让它们同时画出来。 请帮忙!

1 个答案:

答案 0 :(得分:1)

这是使用计时器事件的极简主义示例:

import turtle

t1 = turtle.Turtle(shape="turtle")
t2 = turtle.Turtle(shape="turtle")

t1.setheading(45)
t2.setheading(-135)

def move_t1():
    t1.forward(1)
    turtle.ontimer(move_t1, 10)

def move_t2():
    t2.forward(1)
    turtle.ontimer(move_t2, 10)

turtle.ontimer(move_t1, 10)
turtle.ontimer(move_t2, 10)

turtle.exitonclick()