Computer Science, asked by Sanjurai0747, 6 months ago

Write a program to make a table of 5 in python​

Answers

Answered by SP85
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 srk12092khan
0

i = 1

while (i<11):

print (5*i)

i +=1

Similar questions