3 9 月, 2020 Python海龟画图中如何强行中止程序 作者 李兴球 在 python, turtle """ Python海龟画图中如何强行中止程序 下面的代码让你单击屏幕任何一个地方就能中止while循环。 """ from turtle import * def stop(x,y): TurtleScreen._RUNNING = False t = Turtle() screen = t.screen screen.onclick(stop) while 1: t.fd(10) t.rt(10)
发表评论