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