In <12821378-62af-4954-8b61-aa0738c5f...@googlegroups.com> loial 
<jldunn2...@gmail.com> writes:

> Is there a quick way to concatenate all the values in a list into a string, 
> except the first value?

> I want this to work with variable length lists.

> All values in list will be strings.

> Any help appreciated

big_string = ', '.join(my_list[1:])

-- 
John Gordon         Imagine what it must be like for a real medical doctor to
gor...@panix.com    watch 'House', or a real serial killer to watch 'Dexter'.

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

Reply via email to