Python, print delimited list

Posted by Mike on Stack Overflow See other posts from Stack Overflow or by Mike
Published on 2010-03-08T03:25:03Z Indexed on 2010/03/08 3:36 UTC
Read the original article Hit count: 305

Filed under:
|
|

Consider this Python code for printing a list of comma separated values

for element in list:
    print element + ",",

What is the preferred method for printing such that a comma does not appear if element is the final element in the list.

ex

a = [1, 2, 3]
for element in a
  print str(element) +",",

output
1,2,3,
desired
1,2,3

© Stack Overflow or respective owner

Related posts about python

Related posts about string