e =["a","b","c"]
" ".join(e)
恢复成数组:
" ".join(e).split()
'a b c'.split() 单引号和双引号都可以
'z*x*c'.split('*')
"a b c d".rsplit(" ",1)#指定切割次数