字典值是否可以对应/分配给函数?

时间:2016-07-05 21:58:22

标签: python dictionary

我在互联网上进行了研究,但我无法找到问题的明确答案。可以将字典值分配给本地函数吗?例如:

def add(x, y):
    sum = x + y
    return sum

dictionary = {'add' : add} # Will this value represent the add function?

任何建议将不胜感激! :)

1 个答案:

答案 0 :(得分:2)

是的,您发布的代码是正确的。要调用该函数:

dictionary['add'](1, 2)