Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

while loop in python

# while loop runs till the condition becomes false
number = 0
while number > 10:		# prints number till 10
  print(number)
  number += 1
  
Source by coderwall.com #
 
PREVIOUS NEXT
Tagged: #loop #python
ADD COMMENT
Topic
Name
4+3 =