In <[email protected]> loial <[email protected]> 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 [email protected] watch 'House', or a real serial killer to watch 'Dexter'. -- https://mail.python.org/mailman/listinfo/python-list
