3.6k views
1 vote
+ Use for loop to print numbers from 100 to 10

100
90
80
70
60
50
40
30
20
10

User Laarni
by
3.7k points

1 Answer

4 votes

for x in range(100,9,-10):

print(x)

I wrote my code in python 3.8. I hope this helps.

User Dsundy
by
3.8k points