How to Solve NameError: name 'Screen' is not defined -- turtle
Solution: Import the 'Screen' module
To Solve the error, add the following line to the top of your code.
from turtle import Screen
For more information:
Python turtle Screen