網頁

python how to convert list to string

>>> list1 = ['1', '2', '3']
>>> str1 = ';'.join(list1)
>>> str1
'1;2;3'