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 3 for Absolute Beginners - Tim Hall & J.P Stacey
Python Strings
Python Program to Make a Flattened List from Nested List
Introduction to Scientific Programming with Python - Joakim Sundnes
Python String find()
Python Anonymous / Lambda Function
Python String center()
Python Program to Print all Prime Numbers in an Interval
Python globals()
Python Program to Get Line Count of a File
Python enumerate()
Python Program to Convert Two Lists Into a Dictionary
Python List reverse()
Python String islower()
Python max()
Python Program to Randomly Select an Element From the List
Python Data Types
Python Set clear()
Python timestamp to datetime and vice-versa
Python setattr()
Python String join()
How to get current date and time in Python?
Python Operators
Python Program to Differentiate Between type() and isinstance()
Python Set union()
Python set()
Python getattr()
Python Dictionary update()
Python String isidentifier()
Deep Learning with Python - Francois Cholletf
Python RegEx
Applied Text Analysis with Python - Benjamin Benfort & Rebecca Bibro & Tony Ojeda