How to Solve NameError: name 'time' is not defined -- time

Solution: Import the 'time' module

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

from time import time

 

For more information:
Python time time