Pyton, 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:29 UTC
Read the original article
Hit count: 360
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