fork download
  1. def f(phrase):
  2. return ', '.join(phrase)
  3.  
  4.  
  5. phrase = ['1', '2', '3', '4']
  6.  
  7. print(f(phrase))
Success #stdin #stdout 0.02s 8688KB
stdin
Standard input is empty
stdout
1, 2, 3, 4