列表转换成字符串 用join()
Example: '.'.join(['ab', 'pq', 'rs']) -> 'ab.pq.rs'
字符串装换成列表用 split()
重新分隔字符串的分隔符。 无(默认值)表示根据任何空格分割, 并从结果中丢弃空字符串。