如何让海龟图形在绘制时不显示海龟?

How to get turtle graphics to not show turtle while its being drawn?

如何在不显示绘图过程的情况下显示最终绘图?我正在使用 Python 3.4,这个项目是创建一个射箭游戏。例如,如果我使用以下代码:

import turtle
screen = turtle.Screen()
turtle.circle(10)

用箭头画了一个半径为十的圆,但是我只想要一个圆形,没看到画出来。

你需要隐藏乌龟:

turtle.hideturtle()

然后把速度调到最快:

turtle.speed(0)