Answers for "table module python"

0

table in python

number = int(input ("Enter the number of which the user wants to print the multiplication table: "))      
#  10 times       
print ("The Multiplication Table of: ", number)    
for count in range(1, 11):      
   print (number, 'x', count, '=', number * count)
Posted by: Guest on January-12-2022

Python Answers by Framework

Browse Popular Code Answers by Language