Basics - Control Statement - Exercises Solutions

Control Statement Exercise 05: Multiplication Table

# Write a Python program that displays the multiplication table of a number entered by the user,
# from 1 to 10, using a loop.

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

for i in range(1, 11):
    print(f'{user_number} x {i} = {i * user_number}')

Leave a Reply

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