fork(1) download
  1. values = [1,2,3,4]
  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 0s 9024KB
stdin
Standard input is empty
stdout
Nowhere to be found. :-(