SciPy - Constants and Special Functions
What is the output of the following code?
from scipy.special import factorial result = factorial(5, exact=True) print(result)
from scipy.special import factorial result = factorial(5, exact=True) print(result)
exact=True returns the exact integer value, so result is 120.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions