How to Solve NameError: name 'display' is not defined -- pygame

Solution: Import the 'display' module

To Solve the error, add the following line to the top of your code.

from pygame import display

 

For more information:
Python pygame display