import turtle wn = turtle.Screen() alex = turtle.Turtle() alex.forward(150) alex.left(90) alex.forward(75) turtle.done() that is my code. And the error I keep getting is:
File "C:/Users/stevewestmoreland/Documents\turtle.py", line 2, in <module> wn = turtle.Screen() AttributeError: partially initialized module 'turtle' has no attribute 'Screen' (most likely due to a circular import)