fork download
  1. for i in 1,2,3,4,5:
  2. print(i)
  3.  
  4. for i in 'one','two','three':
  5. print(i)
Success #stdin #stdout 0.02s 7156KB
stdin
Standard input is empty
stdout
1
2
3
4
5
one
two
three