SyntaxFix
Write A Post
Hire A Developer
Questions
for n in range(6,0,-1)
This would give you 6,5,4,3,2,1
6,5,4,3,2,1
As for
for n in reversed(range(0,6))
would give you 5,4,3,2,1,0
5,4,3,2,1,0