Here's my code:
window=turtle.Screen()
window.title("Pong")
window.bgcolor("black")
window.setup(width=800,height=600)
window.tracer(0)
I get this error when I run the program:
File "C:\Users\Aditya\PycharmProjects\pythonProject\main.py", line 6, in <module>
window=turtle.Screen()
NameError: name 'turtle' is not defined
What's the problem and how can I fix it?