Decreasing for loops in Python impossible? December 25, 2022 by Tarik for n in range(6,0,-1): print n # prints [6, 5, 4, 3, 2, 1]