是否可以将字符串转换为可计算的操作
我想完成这件事:
>>> import math
>>> operation = "10/2*6 + math.sqrt(42)"
>>> compute(operation)
36.48074069840786
答案 0 :(得分:2)
eval
会为你做到这一点。
>>> import math
>>> operation = "10/2*6 + math.sqrt(42)"
>>> eval(operation)
36.48074069840786