Computer Science, asked by seemasssingh4p893y4, 1 year ago

write programme to print following output.
5
44
333
2222
11111
in python using for loop
hurry it's urgent​

Answers

Answered by AditBaliga
1

n = [5, 4, 3, 2, 1]

t = [1, 11, 111, 1111, 11111]

for i, j in zip(n, t):

     print(i*j)

plz mark as brainliest

Similar questions