fork download
  1. values = [1,2,3,4,5]
  2. for value in values:
  3. if value == 5:
  4. print "Found it!"
  5. break
  6. else:
  7. print "Nowhere to be found. :-("
Success #stdin #stdout 0.01s 9024KB
stdin
Standard input is empty
stdout
Found it!