Write Python Program to Print Table of a Given Number
Topic: Write Python Program to Print Table of a Given Number
Solution
n=int(input("Enter the number to print the tables for:")) for i in range(1,11): print(n,"x",i,"=",n*i)
List all Python Programs