将字符串转换为可计算的操作

时间:2012-10-17 16:49:54

标签: python string math

是否可以将字符串转换为可计算的操作

我想完成这件事:

>>> import math
>>> operation = "10/2*6 + math.sqrt(42)"
>>> compute(operation)
36.48074069840786

1 个答案:

答案 0 :(得分:2)

eval会为你做到这一点。

>>> import math
>>> operation = "10/2*6 + math.sqrt(42)"
>>> eval(operation)
36.48074069840786