python正则表达式——使用split()语句切割字符串 1、代码实现 import re split = re.split(r":| ", 'info:xiaozhang i heihei') print(split) 运行结果