How to Solve NameError: name 'partial' is not defined -- functools

Solution: Import the 'partial' module

# Add the following line to the top of your code
from functools import partial

 

For more information:
functools partial