write a programTo input any number and print its table in python
Answers
Answered by
0
Explanation:
num = int(input("Show the multiplication table of? "))
# using for loop to iterate multiplication 10 times.
for i in range(1,11):
print(num,'x',i,'=',num*i)
Answered by
1
Answer:
hello,
its using python
Explanation:
#program to accept a number from the user and print the multiplication table of that number.
n=int(input("enter the number"))
i=1
while i<=10:
s=n*i
print(n,"X",i,"=",s)
i=i+1
hope it helps you
please mark brainliest
@ItzSnowySecret07
Similar questions