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

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

python attributes turtle-graphics python-turtle