- On
- By
- 5 Comments
- Categories: multiply, Table
Python program to display the multiplication table
Python program to display the multiplication table
In this tutorial, we will discuss the concept of Python program to display the multiplication table.
We will learn how to create a multiplication table in a various way in Python language
Program 1
Program to print the multiplication table using for loop in Python
'''multiplication table in Python''' num=input("Enter the number for multiplication table: "); #get input from user #use for loop to iterates 1 times for i in range(1,11): print(num,'x',i,'=',num*i) #for display multiplication table
When the above code is executed, it produces the following results:
Enter the number for multiplication table: 12 12x1=12 12x2=24 12x3=36 12x4=48 12x5=60 12x6=72 12x7=84 12x8=96 12x9=108 12x10=112
Program to print the multiplication table using while loop in Python
Program 1
num=input("Enter the number for multiplication table: \n"); #get input from user i=0; while i<=num: #use for loop to iterates 1 times i+=1; print(num,'x',i,'=',num*i)
When the above code is executed, it produces the following results:
Enter the number for multiplication table: 12 12x1=12 12x2=24 12x3=36 12x4=48 12x5=60 12x6=72 12x7=84 12x8=96 12x9=108 12x10=120 12x11=132 12x12=144 12x13=156
Similar post
Python program to display the multiplication table
Java program to display the multiplication table
Cpp program to print multiplication table
C program to display multiplication table
Java program to display the multiplication table using array
Suggested for you
Nested for loop in Java language
Nested for loop in C++ language
Nested for loop in Python language
If statements in Java language
Nested if statements in Java language
you may also like this
Floyd’s triangle number pattern using for loop in C
Floyd’s triangle pattern using nested for loop in Java
Floyd’s triangle pattern using nested while loop in Java
Hollow pyramid triangle pattern in C++ language
5 Comments
saurav May 7, 2021 at 4:38 pm
program ko system mai run kara ke dekhe ho ya nahi
kya bakwas print kar raha hai
saurav May 7, 2021 at 4:41 pm
for loop ka output : Enter the number for multiplication table: 2
x 1 = 2
2 x 2 = 22
2 x 3 = 222
2 x 4 = 2222
2 x 5 = 22222
2 x 6 = 222222
2 x 7 = 2222222
2 x 8 = 22222222
2 x 9 = 222222222
2 x 10 = 2222222222
while loop ka output :
Enter the number for multiplication table:
2
2
compiler ka output hai
net pe dalne se phelay check kar liya karo kuch bhi post kar rahe ho
Jay Prajapati May 21, 2021 at 10:40 am
Program to print the multiplication table using while loop in Python:
num1 = int(input(‘Enter a number:n’))
i = 1
while i < 11:
print(f'{num1} * {i} = {num1 * i}')
i = i + 1
Output:
3 * 1 = 3
3 * 2 = 6
3 * 3 = 9
3 * 4 = 12
3 * 5 = 15
3 * 6 = 18
3 * 7 = 21
3 * 8 = 24
3 * 9 = 27
3 * 10 = 30
Karmehavannan May 23, 2021 at 2:14 am
Thank you
Anmol March 14, 2022 at 10:39 am
num = int(input(“enter your desired number”))
for i in range(1,11)
print(f”{num}X{i} = {num *i}”)