printing list

compboy compboyxyz at gmail.com
Sun May 7 12:15:10 EDT 2006


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.




More information about the Python-list mailing list