python re.split() 要分割+-=号正则表达式怎么写
import re a = "1+2+3+4-5-6-7 = 34 = 34" print(re.split(r"[+]|[-]|[=]",a))