Answers for "builtin factorial python"

0

python factorial

def factorial(n):
    fact = 1
    for num in range(2, n + 1):
        fact *= num
    return fact
Posted by: Guest on December-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language