AttributeError: partially initialized module 'turtle' has no attribute 'Turtle' (most likely due to a circular import)

落花浮王杯 提交于 2020-12-23 09:43:21

问题


Does anybody have any idea why this code doesn't work?

import turtle
test = turtle.Turtle()
test.color("orange")
test.pensize(5)
test.shape("turtle")
test.forward(100)

I use python 3.8


回答1:


You've made a common error that I happended to also make when I was investigating your question.

I assume you have your code written in a file called 'turtle.py'? When you import turtle, it imports your file, not the turtle library.

Rename your file to something other than turtle.py, and your code should run fine.

Here is the result when I renamed my file from turtle.py to turtle2.py.




回答2:


You need to end the loop that draws on the screen, by typing :

turtle.done()


来源:https://stackoverflow.com/questions/60480328/attributeerror-partially-initialized-module-turtle-has-no-attribute-turtle

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!