Basics - Control Statement - Exercises Solutions

Control Statement Exercise 04: Factorial Calculator

# Write a Python program that computes the factorial of a number entered by the user using a loop.
# Hint: Factorial of n (n!) = n × (n-1) × (n-2) × ... × 1

user_number = int(input('Enter a number: '))
product = 1

for i in range(user_number, 1, -1):
    product *= i

print(f'Factorial: {product}')

Leave a Reply

Your email address will not be published. Required fields are marked *