join, split为python3中针对文本处理较为常见的方法
Join 合并多个可迭代类型转换为string,比如将list转换为string
split为将string转换为list,可以传入分割符,默认为空格,
也可以传入最大需要分割的数量,超过这个数量之后将不再分割
str1="hello,this is a test" >>> str1.split(' ', maxsplit=2) #使用空格分隔,最多分隔两次 ['hello,this', 'is', 'a test'] >>> str1.split() ['hello,this', 'is', 'a', 'test'] >>> c=str1.split() >>> ' '.join(c) #使用空格将list连接成string 'hello,this is a test'