Python program to print the multiplication table of a given number
kw.py
Output
kodingwindow@kw:~$ python3 kw.py ________________________________________ Program to print the multiplication table ________________________________________ Enter the number 81 81 * 1 = 81 81 * 2 = 162 81 * 3 = 243 81 * 4 = 324 81 * 5 = 405 81 * 6 = 486 81 * 7 = 567 81 * 8 = 648 81 * 9 = 729 81 * 10 = 810 ________________________________________
What Next?
Python program to check whether a given number is a palindrome
Python program to print the list of all leap years
Python Strings
Advertisement