在字典中使用 eval
Using eval within a dict
我想使用字典本身评估字典键的值。
例如:
dict_ = {'x': 1, 'y': 2, 'z':'x+y'}
dict_['z'] = eval(dict_['z'], dict_)
print(dict_)
当我这样做时,它在 dict 中包含了一堆不必要的东西。在上面的示例中,它打印:
{'x': 1, 'y': 2, 'z': 3, '__builtins__': bunch-of-unnecessary-stuff-too-long-to-include
相反,在上面的例子中我只想:
{'x': 1, 'y': 2, 'z': 3}
如何解决这个问题?谢谢!
将 dict 的副本传递给 eval()
:
dict_ = {"x": 1, "y": 2, "z": "x+y"}
dict_["z"] = eval(dict_["z"], dict_.copy())
print(dict_)
打印:
{'x': 1, 'y': 2, 'z': 3}
如果你能改变dict中的公式。让它访问字典中的值。问题是你没有定义 x
或 y
dict_ = {'x': 1, 'y': 2, 'z': "dict_['x']+dict_['x']"}
dict_['z'] = eval(dict_['z'])
我想使用字典本身评估字典键的值。 例如:
dict_ = {'x': 1, 'y': 2, 'z':'x+y'}
dict_['z'] = eval(dict_['z'], dict_)
print(dict_)
当我这样做时,它在 dict 中包含了一堆不必要的东西。在上面的示例中,它打印:
{'x': 1, 'y': 2, 'z': 3, '__builtins__': bunch-of-unnecessary-stuff-too-long-to-include
相反,在上面的例子中我只想:
{'x': 1, 'y': 2, 'z': 3}
如何解决这个问题?谢谢!
将 dict 的副本传递给 eval()
:
dict_ = {"x": 1, "y": 2, "z": "x+y"}
dict_["z"] = eval(dict_["z"], dict_.copy())
print(dict_)
打印:
{'x': 1, 'y': 2, 'z': 3}
如果你能改变dict中的公式。让它访问字典中的值。问题是你没有定义 x
或 y
dict_ = {'x': 1, 'y': 2, 'z': "dict_['x']+dict_['x']"}
dict_['z'] = eval(dict_['z'])