Q.28

PHOTO EMBED

Sat Jan 08 2022 13:18:31 GMT+0000 (Coordinated Universal Time)

Saved by @di


#Q.28Write a Python program to create the multiplication table (from 1 to 10) of a number.

n = int(input("Input a number: "))
for i in range(1,11):
   print(n,'x',i,'=',n*i)
content_copyCOPY

https://www.onlinegdb.com/online_python_compiler