Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.5k views
in Technique[技术] by (71.8m points)

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

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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.

Turtle


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...