Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python while loop

current_value = 1
while current_value <= 5:
	print(current_value)
	current_value += 1
Source by nostarch.com #
 
PREVIOUS NEXT
Tagged: #python #loop
ADD COMMENT
Topic
Name
6+8 =