I basically can't seem to be able to make turtle work for me. It always prompts errors that the names are not available.
My current issue which I can't seem to solve is that I get the Error:
Cannot import 'Screen' from partially initialized module 'turtle' (most likely due to a circular import).
I am just using a simple code:
from turtle import Screen, Turtle
screen = Screen()
turtle = Turtle ()
turtle.forward(100)
screen.mainloop()
turtle.done()
I would love some ideas on how to solve this issue.