"99 Bottles of Milk on the Wall" is a classic counting song. Let's code it!
The range() function can count backwards with a negative step:
The three arguments are: range(start, stop, step). The stop value is excluded.
for i in range(5, 0, -1):
print(i)
# Output: 5, 4, 3, 2, 1
Run your code
5 bottles of milk on the wall.
4 bottles of milk on the wall.
3 bottles of milk on the wall.
...