Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
快速提问。如何使 Python Turtle Graphics 屏幕直接在我的屏幕上弹出,而不是在我必须手动单击它才能打开的背景中。我需要看 Python 绘图
为了使您的问题快速,您需要发布一些代码。
import turtle myTurtle = turtle.Turtle() myTurtle.circle(50) turtle.getscreen()._root.mainloop()
对我来说从前台开始(尝试在 Ubuntu 64 上从 komodo 编辑和命令行运行)