python 字符串与数组互转


1、str -> array

  arr =   strval.split('')


2、array -> str

strval = ''.join(arr)


你可能感兴趣的:(python)