Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

Python while loop

i = 0
while i < 10:
    print(i)
    i += 1
Source by www.bitdegree.org #
 
PREVIOUS NEXT
Tagged: #Python #loop
ADD COMMENT
Topic
Name
8+9 =