我们从Python开源项目中,提取了以下3个代码示例,用于说明如何使用turtle.exitonclick()。
def tscheme_exitonclick(): """Wait for a click on the turtle window, and then close it.""" global _turtle_screen_on if _turtle_screen_on: print("Close or click on turtle window to complete exit") turtle.exitonclick() _turtle_screen_on = False return okay