Python Online Compiler
Example: Program to Print Multiplication Table of a given Number in Python
C
C++
C#
Java
Python
PHP
main.py
STDIN
Run
# Program to Print Multiplication Table of a given Number in Python print ("----Enter the input number is::---\n") x = int (input ()) print ("\n----Enter the range number is::----\n") r = int (input ()) # x - To store the input number # r - To store the multiplication range print ("\n\n------The above multiplication table--------\n\n") for i in range (1, r + 1): print ("\t", x, " * ", i, " = ", x * i)
16 11
Output
Clear
ADVERTISEMENTS