How to Solve NameError: name 'Mult' is not defined -- ast

Solution: Import the 'Mult' module

# Add the following line to the top of your code
from ast import Mult

 

For more information:
ast Mult