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 > > because if I use this code > > for i in alist: > print i > > the result would be like this > > 1 > 2 > 5 > 10 > 15 > > Thanks. >
There are a number of ways to do it but if you want a one-liner: print repr(alist)[1:-1] will meet your spec. -- http://mail.python.org/mailman/listinfo/python-list