python 字符串數組互轉

字符串轉數組 str = '1,2,3' arr = str.split(',') 數組轉字符串 arr = ['a','b'] str = ','.join(arr) arr = [1,2,3] str = ','.join(str(i) for i in b)
相關文章
相關標籤/搜索