printing list
0 answers - 577 bytes -

7 May 2006 09:15:10 -0700, compboy <compboyxyz (AT) gmail (DOT) comwrote:
How do you print elements of the list in one line?
alist = [1, 2, 5, 10, 15]
so it will be like this:
1, 2, 5, 10, 15
because if I use this code
for i in alist:
print i
the result would be like this
1
2
5
10
15
alist = [1, 2, 5, 10, 15]
print str(alist)[1:-1]
1, 2, 5, 10, 15
or not quite the same result
alist = [1, 2, 5, 10, 15]
for i in alist:
print "%s," % i,
1, 2, 5, 10, 15,
HTH :)