Python中的spilt方法只能通过指定的某个字符分割字符串,如果需要指定多个字符,需要用到re模块里的split方法。
import re
s="info:xiaoZhang 33 shandong"
lis = re.split(":| ",s)
print(lis)
import re
s="info:xiaoZhang 33 shandong"
lis = re.split(":| ",s)
print(lis)
本文标题:python通过多个字符分割字符串
本文链接:https://www.haomeiwen.com/subject/bxdwtktx.html
网友评论