利用正则实现计算器 利用正则来实现简单计算器的功能,能够设计计算带括号的加减乘除运算.当然不使用eval等语句. 利用递归: import re from functools import reduce def foo2(y): if '(' in y: t1 = re.search(r'\([^()]+\)',y) temp1 = t1.group().strip('()') res = foo1(temp1) y = y.replace(t1.group(),str(res)) return