fork download
  1. for i in range(10):
  2. if i == 5:
  3. break
  4. else:
  5. print(i)
  6. else:
  7. print("Here")
  8.  
  9.  
Success #stdin #stdout 0.03s 9692KB
stdin
8
stdout
0
1
2
3
4