Computer Science, asked by sashisadhana, 2 months ago

Create a Python program to print the table of a number.​

Answers

Answered by rakeshsaloni37
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