I\'m new to python (as well as stackoverflow) and I was wondering how I could print several values with commas in between them.
I\'m very well aware of the end
end
list1 = ['1','2','3','4'] s = ",".join(list1) print(s)