In the below example, the input for the program is taken from the user. The input given by the user at the time output is 10. The range given for the loop is (1,11)which means that the number must be greater than equal to one and lesser than 11. In the first iteration, the number is multiplied by 1. In the second iteration, the number is multiplied by 2, and so on until 10. Lets see multiplication table in python.
Source Code for Python Multiplication Table using the for Loop
numb = int(input(" Enter a number : "))
# using the for loop to generate the multiplication tables
print("Table of: ")
for a in range(1,11):
print(num,'x',a,'=',num*a)
Output
Enter the number : 7
Multiplication Table of :
7 x 1 = 7
7 x 2 = 14
7 x 3 = 21
7 x 4 = 28
7 x 5 = 35
7 x 6 = 42
7 x 7 = 49
7 x 8 = 56
7 x 9 = 63
7 x 10 = 70
Related Questions
- How do you do the Fibonacci sequence in Python?
- How do you know if a python is positive or negative?
- How do you find prime numbers in Python?
- How do you find the sum of n numbers in Python?
- Is there a Fibonacci function in Python?
- How do you know if a number is negative?
- How do you find the nth Fibonacci number in Python?
- How do you make a while loop in Python using multiplication tables?
- How do you get rid of the negative sign in Python?
- How do you find the prime numbers from 1 to 100 in Python?
- How do you find the sum of first n natural numbers in Python?
- How do you write a Fibonacci series for a loop in Python?
- What is the function for multiplication in Python?
- How do you change positive to negative in Python?
- How do you sum numbers in Python?
Related Topics
- Python Program to Find Armstrong Number in an Interval
- Python Program to Check Armstrong Number
- Python Program to Find the Factorial of a Number
- Python Program to Print the Fibonacci sequence
- Python Program to Find the Largest Among Three Numbers
- Python Program to Display the multiplication Table
- Python Program to Check if a Number is Odd or Even
- Python Program to Check if a Number is Positive, Negative or 0
- Python Program to Check Prime Number
- Python Program to Print all Prime Numbers in an Interval
- Python Program to Find the Sum of Natural Numbers
- Python Program to Find Hash of File
- Python Program to Merge Mails
- Python Program to Find the Size (Resolution) of an Image
- Python Program to Find ASCII Value of Character
- Python Program to Convert Decimal to Binary, Octal and Hexadecimal
- Python Program to Convert Decimal to Binary Using Recursion
- Python Program to Display Calendar
- Python Program to Find the Factors of a Number
- Python Program to Find Factorial of Number Using Recursion
- Python Program to Display Fibonacci Sequence Using Recursion
- Python Program to Find HCF or GCD
- Python Program to Find LCM
- Python Program to Check Leap Year
- Python Program to Find Sum of Natural Numbers Using Recursion
- Python Program to Find Numbers Divisible by Another Number
- Python Program To Display Powers of 2 Using Anonymous Function
- Python Program to Shuffle Deck of Cards
- Python Program to Add Two Numbers
- Python Program to Calculate the Area of a Triangle
- Python Program to Make a Simple Calculator
- Python Program to Convert Celsius To Fahrenheit
- Python Program to Print Hello world!
- Python Program to Convert Kilometers to Miles
- Python Program to Solve Quadratic Equation
- Python Program to Generate a Random Number
- Python Program to Find the Square Root
- Python Program to Swap Two Variables
- Python Program to Add Two Matrices
- Python Program to Sort Words in Alphabetic Order
- Python Program to Count the Number of Each Vowel
- Python Program to Check Whether a String is Palindrome or Not
- Python Program to Remove Punctuations From a String
- Python Program to Transpose a Matrix
Leave a Reply