Create a Python program to print the table of a number.
Answers
Answered by
1
Answer:
# Program to print table of a number
num= int ( input ( "Enter the number to print the table for:" )
for a in range(1 ,11 ) :
print ( num, '×', a, '=', num*a )
Similar questions
English,
30 days ago
English,
30 days ago
Computer Science,
30 days ago
Physics,
2 months ago
Environmental Sciences,
2 months ago
Social Sciences,
8 months ago