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.

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

Reply via email to