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

Solution: Import the 'math' module

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

 

For more information:
Python math