在Python中,如果需要使用多个分隔符来分割字符串,可以使用re.split()方法(来自re模块),或者str.split()结合循环/列表推导式,以下是几种常见方法:方法1:使用re.split()(推荐)re.s...