fork download
  1. # your code goes here
  2. list = ['a',1,2,3.4]
  3. for i in list:
  4. print(i)
Success #stdin #stdout 0.02s 9120KB
stdin
Standard input is empty
stdout
a
1
2
3.4