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
'''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 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
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…
View Comments
program ko system mai run kara ke dekhe ho ya nahi
kya bakwas print kar raha hai
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
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
Thank you
num = int(input("enter your desired number"))
for i in range(1,11)
print(f"{num}X{i} = {num *i}")