Answers for "how to run decreasing loop in python"

0

decreasing for loop python

for i in range(5,0,-1):
	print(i)
#Prints: 5,4,3,2,1
#Inclusive of 5, not inclusice of 0. "-1" denotes the decrease
Posted by: Guest on May-26-2020

Code answers related to "how to run decreasing loop in python"

Python Answers by Framework

Browse Popular Code Answers by Language