Answers for "how to use python to print multiplication table"

1

how to use python to print multiplication table

num = int(input('Which table you need write it here:'))

starting_range = int(input('write the number from where to start:'))
ending_range = int(input('write the end of the number you need:'))
print()
print('So This is the table of', num)
for i in range(starting_range, ending_range + 1):
   print(num, 'x', i, '=', num*i)
Posted by: Guest on August-12-2021

Code answers related to "how to use python to print multiplication table"

Python Answers by Framework

Browse Popular Code Answers by Language