While with else : While « Language Basics « Python






While with else

While with else
 

y = 10

x = y / 2                          # for some y > 1
while x > 1:
    if y % x == 0:                 # remainder
        print y, 'has factor', x
        break                      # skip else
    x = x-1
else:                              # normal exit
    print y, 'is prime'

           
         
  








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.While loopWhile loop
6.How to use whileHow to use while
7.While loop demoWhile loop demo
8.While with breakWhile with break
9.Write an initial sub-sequence of the Fibonacci series
10.Guess My Number
11.A trailing comma avoids the newline after the output