compboy 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

 >>> print ', '.join(alist)
1, 2, 5, 10, 15

-tkc






-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to