''' 原谅我正则不好,只能投机取巧使用eval进行转换。顺带加了两个特殊符号{}[]的替换。可以应对400+5+{(2*3)+(3*4)}这种类型的 ''' string=str(input()) print(eval(string.replace('{','(').replace('[', '(').replace('}',')').replace(']', ')')))
''' 原谅我正则不好,只能投机取巧使用eval进行转换。顺带加了两个特殊符号{}[]的替换。可以应对400+5+{(2*3)+(3*4)}这种类型的 ''' string=str(input()) print(eval(string.replace('{','(').replace('[', '(').replace('}',')').replace(']', ')')))