在 Python turtle 中,我如何写一个时间延迟

In Python turtle how can I write a timedelay

我想知道如何使用 turtle 函数创建时间延迟。它会是一个函数的一部分,在需要时循环创建一个吗?

您在找这样的东西吗?

import turtle

t = turtle

t.forward(100)
t.delay(1500)
t.forward(100)

不要犹豫,阅读 Documentation