fork download
  1.  
  2. def f():
  3. # space 4
  4. for i in range(3):
  5. # space4 + tab
  6. print(i)
  7.  
  8. f()
  9.  
Success #stdin #stdout 0.02s 9180KB
stdin
Standard input is empty
stdout
0
1
2