使用eval()
执行表达式时,某些输入的输出错误。我认为不考虑十进制值。
我一直在尝试使用python eval()
评估字符串,还尝试了numexpr()
def _calc_line_base_amount(text):
num = '0123456789*-+/()'
# here text = "3/2*5"
if text:
for char in text:
if char not in num:
text = text.replace(char, "")
return eval(str(text))
并且也尝试了这个
import numexpr as ne
print(ne.evaluate("3/2*5"))
输入3/2 * 5 预期产量7.5 实际输出为5
编辑:: 在python3 +中有效。但是我正在运行这个python2.7
答案 0 :(得分:0)
两个都工作正常,并提供相同的输出
使用功能eval() 7.5
使用numexpr numexpr 7.5
确保已为第二个安装了nuexpr,并确保使用的是python3。