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

Solution: Import the 'itemgetter' module

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

 

For more information:
operator itemgetter