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

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

Leave a Comment