How to Solve NameError: name 'animation' is not defined -- matplotlib
Solution: Import the 'animation' module
To Solve the error, add the following line to the top of your code.
from matplotlib import animation
For more information:
Python matplotlib animation