How to Solve NameError: name 'marshal' is not defined

Solution: Import the 'marshal' module

# Add the following line to the top of your code
import marshal

 

For more information:
Python marshal