fork download
  1. a = [1,2, None, 4, 5]
  2.  
  3. for e in a:
  4. print(e)
Success #stdin #stdout 0.02s 9284KB
stdin
Standard input is empty
stdout
1
2
None
4
5