Write Python programs to: Enter a number (from 1-10) and display its mathematical number. IF YOU ATTEMPT THE QUESTION PROPERLY I DEFENETLY MARK YOU AS THE BRAINLIST. NOTE - YOUR ANSWER SHOULD BE CORRECT
Answers
hope it is helpful to you please mark me as brainlist
In this tutorial, we will see a simple Python program to display the multiplication table of a given number.
Print Multiplication table of a given number
In the program, user is asked to enter the number and the program prints the multiplication table of the input number using for loop. The loops run from 1 to 10 and the input number is multiplied by the loop counter in each step to display the steps of multiplication table.
# Program published on https://beginnersbook.com
# Python Program to Print Multiplication Table of a Number
num = int(input("Enter the number: "))
print("Multiplication Table of", num)
for i in range(1, 11):
print(num,"X",i,"=",num * i)
Output:
Enter the number: 6
Multiplication Table of 6
6 X 1 = 6
6 X 2 = 12
6 X 3 = 18
6 X 4 = 24
6 X 5 = 30
6 X 6 = 36
6 X 7 = 42
6 X 8 = 48
6 X 9 = 54
6 X 10 = 60