218k views
1 vote
Write a python program to print numbers from 100 to 50 using for loop.

I NEED THIS URGENT PLEASE

1 Answer

1 vote

Answer:

i = 100

for i in range 50

print(i--)

Step-by-step explanation:

prints down from 100 to 50, i is printed then decremented.

User Quora Feans
by
3.1k points