How to Solve NameError: name 'totient' is not defined -- sympy

Solution: Import the 'totient' module

To Solve the error, add the following line to the top of your code.

from sympy import totient

 

For more information:
Python sympy totient