While loop : While « Language Basics « Python






While loop

While loop
 


health = 10
trolls = 0
damage = 3

while health >0:        #!= 0:
    trolls += 1
    health = health - damage
    
    print " " \
          "but takes", damage, "damage points.\n"

print " ", trolls, "trolls."
           
         
  








Related examples in the same category

1.While loop with counter-controlled repetition.While loop with counter-controlled repetition.
2.While loop with sentinel-controlled repetiton.While loop with sentinel-controlled repetiton.
3.Analysis of examination results.
4.Use if inside whileUse if inside while
5.How to use whileHow to use while
6.While loop demoWhile loop demo
7.While with breakWhile with break
8.Write an initial sub-sequence of the Fibonacci series
9.While with elseWhile with else
10.Guess My Number
11.A trailing comma avoids the newline after the output