字符串常用操作:拆分、修剪、拼接、检测、计数、替代split() : 拆分,str.split(',');strip()、rstrip()、lstrip(): 修剪,str.strip() --修剪空白符(包括换行符)join() : 拼接,str.join() --方法传入一个列表或元组