Objective
Develop a Python program to ask the user for a number and display its multiplication table, like this:
Please enter a number:
5
The multiplication table for 5 is:
5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
...
5 x 10 = 50
Example Python Exercise
Show Python Code
# Prompt the user to enter a number
num = int(input("Please enter a number: "))
# Display the multiplication table for the entered number
print(f"\nThe multiplication table for {num} is:")
for i in range(1, 11):
print(f"{num} x {i} = {num * i}")
Output
Please enter a number:
5
The multiplication table for 5 is:
5 x 1 = 5
5 x 2 = 10
5 x 3 = 15
5 x 4 = 20
5 x 5 = 25
5 x 6 = 30
5 x 7 = 35
5 x 8 = 40
5 x 9 = 45
5 x 10 = 50
Share this Python Exercise