fork download
  1. tab = [1,2,3,4]
  2.  
  3. print(", ".join(map(str, tab)))
Success #stdin #stdout 0.09s 14092KB
stdin
Standard input is empty
stdout
1, 2, 3, 4