With the help of Python3 1=1 Output :
Python3 1=1
sympy.factorial(), we can find the factorial of any number by using sympy.factorial() method.
Syntax : sympy.factorial()
Return : Return factorial of a number.
Example #1 :
In this example we can see that by using sympy.factorial(), we are able to find the factorial of number that is passed as parameter.
# import sympy
from sympy import *
# Using sympy.factorial() method
gfg_exp = factorial(5)
print(gfg_exp)
120Example #2 :
# import sympy
from sympy import *
# Using sympy.factorial() method
gfg_exp = factorial(10)
print(gfg_exp)
Output :
3628800