View Problem

Join the elements of a list, separated by commas

Given the list [Apple, Banana, Carrot] produce "Apple, Banana, Carrot"
DiskEdit
python
print ", ".join(['Apple', 'Banana', 'Carrot'])

Submit a new solution for python
There are 28 other solutions in additional languages (clojure, cpp, csharp, erlang ...)