This program displays the multiplication table of variable num (from 1 to 10).
To understand this example, you should have the knowledge of the following Python programming topics:
In the program below, we have used the for loop to display the multiplication table of 12.
Source Code
# Multiplication table (from 1 to 10) in Python
num = 12
# To take input from the user
# num = int(input("Display multiplication table of? "))
# Iterate 10 times from i = 1 to 10
for i in range(1, 11):
print(num, 'x', i, '=', num*i)
Output
12 x 1 = 12 12 x 2 = 24 12 x 3 = 36 12 x 4 = 48 12 x 5 = 60 12 x 6 = 72 12 x 7 = 84 12 x 8 = 96 12 x 9 = 108 12 x 10 = 120
Here, we have used the for loop along with the range() function to iterate 10 times. The arguments inside the range() function are (1, 11). Meaning, greater than or equal to 1 and less than 11.
We have displayed the multiplication table of variable num (which is 12 in our case). You can change the value of num in the above program to test for other values.
Related posts:
Python Program to Check If a String Is a Number (Float)
Python print()
Python String isdecimal()
Python Program to Print all Prime Numbers in an Interval
Python Program to Find Factorial of Number Using Recursion
Python String isalpha()
Python Set isdisjoint()
Python chr()
Python Iterators
Python String ljust()
Python Program to Get the Class Name of an Instance
Python Errors and Built-in Exceptions
Python Global, Local and Nonlocal variables
Python @property decorator
Python del Statement
Python Program to Transpose a Matrix
Python Program to Find ASCII Value of Character
Python bytearray()
Python Numbers, Type Conversion and Mathematics
Python Program to Display Fibonacci Sequence Using Recursion
Python List Comprehension
Python dict()
Python Program to Find the Sum of Natural Numbers
Python Program to Sort Words in Alphabetic Order
Python Program to Reverse a Number
Python delattr()
Python Tuple index()
Python Program to Safely Create a Nested Directory
Python Program to Check if a Key is Already Present in a Dictionary
Python String isspace()
Python Dictionary values()
Python Set issubset()