While loop demo : While : Language Basics PYTHON examples


PYTHON examples » Language Basics » While »

 

While loop demo


While loop demo
 
x = 1
while x <= 100:
    print x
    x += 1


           
         
  



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON examples

 Navioo Language Basics
» While