Write a program to make a table of 5 in python
Answers
Answered by
1
n = int(input("Input a number: "))
# use for loop to iterate 10 times
for i in range(1,11):
print(n,'x',i,'=',n*i)
Answered by
0
i = 1
while (i<11):
print (5*i)
i +=1
Similar questions