Comment compter en arrière pour Loop Python

# for i in range(start, end, step)
for i in range(5, 0, -1):
    print(i)
5
4
3
2
1

    
crookie14