来自 turtle class 的 mainloop 函数不工作,Python

mainloop function from turtle class is not working, Python

这是我的代码:

import turtle             
wn = turtle.Screen()      
alex = turtle.Turtle()    

alex.forward(50)          
alex.left(90)             
alex.forward(30)          

wn.mainloop()             

我的错误是:“_Screen 对象没有属性 mainloop”

我试着只做 "mainloop" 但后来我在做 alex.mainloop 时遇到了 NameError 并给出了同样的错误,即 turtle 对象没有属性 mainloop。

谷歌搜索告诉我,我的文件名可能是 turtle.py 造成了冲突,但事实并非如此。

你只需要在turtle模块上调用mainloop()函数。所以你的最后一行应该是:

turtle.mainloop()