How to Solve NameError: name 'eq' is not defined -- operator

Solution: Import the 'eq' module

# Add the following line to the top of your code
from operator import eq

 

For more information:
operator eq