Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

multiplication table python

# Multiplication table (from 1 to 10) in Python
# To take input from the user
# num = int(input("Display multiplication table of? "))
for i in range(1, 11):
   print(num, 'x', i, '=', num*i)
 
PREVIOUS NEXT
Tagged: #multiplication #table #python
ADD COMMENT
Topic
Name
7+7 =