File size: 324 Bytes
b12e4cb
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
# Assignment 1: Calculate the factorial of a number
# Write a function to compute the factorial of a given number n
def factorial(n):
    if n == 0 or n == 1:
        return 1
    else:
        return n * factorial(n - 1)

# Test the function
number = 5
result = factorial(number)
print(f"Factorial of {number} is {result}")