Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to write a while statement in python

myvariable = 10
while myvariable > 0:
  print(myvariable)
  myvariable -= 1
Source by coderwall.com #
 
PREVIOUS NEXT
Tagged: #write #statement #python
ADD COMMENT
Topic
Name
4+1 =