Python(十八)——eval函数 一、eval函数的作用 将字符串str当成有效的表达式来求值并返回计算结果。 a = 2 b = 3 c = "a+b" print(eval(c)) #5 dict1 = {"a":1,"b":2} print(eval("a+b",dict1))#3