Computer Science, asked by ahanna123, 5 months ago

accept a no. from the user and print the table of that no. in python​

Answers

Answered by atrs7391
1

Your Program:

n = int(input("Enter the number: "))

for x in range(1, 11):

   print(n, "X", x, "=", n*x)

Similar questions