Computer Science, asked by bidishahazra28042000, 19 days ago

write a program and draw a flowchart TO print the following series :5,55,555 upto 5th term​

Answers

Answered by edwinshajumalakaranc
0

Answer:

for i in range(1,6):

   print(i*"5"," ")

Similar questions