printing list

Tim Williams tdw at tdw.net
Sun May 7 12:43:52 EDT 2006


On 7 May 2006 09:15:10 -0700, compboy <compboyxyz at gmail.com> wrote:
> 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 :)



More information about the Python-list mailing list