>>> ';'.join(list) 'first;second;third' >>> ';'.join(list).split(';') ['first', 'second', 'third'] >>>