后记:
ls3='%'.join(ls2)
会把%加入拼接成的字符里面,同理,加入其它字符也一样,''空就是什么都不加,如上图
最后输出 1%我%22
字符变成列表的方法
str2 = '1,2,3'arr = str2.split(',')print arr