Python中的spilt方法只能通过指定的某个字符分割字符串,如果需要指定多个字符,需要用到re模块里的split方法。 import re s="info:xiaoZhang 33 shandong" lis = re.split(":| ",s) print(lis)