fork download
  1. i = 1
  2. for j in range(0, i):
  3. if j % 2 == 1:
  4. break
  5. print(j)
  6. else:
  7. print("ok")
  8. i = 3
  9. for j in range(0, i):
  10. if j % 2 == 1:
  11. break
  12. print(j)
  13. else:
  14. print("ok")
  15.  
  16. #https://pt.stackoverflow.com/q/280773/101
Success #stdin #stdout 0.02s 9236KB
stdin
Standard input is empty
stdout
0
ok
0