Python的世界里,万物皆对象,函数当然也是:
首先要定义一个函数:
def add(a,b): print a+b
其次定义一个字典来引用该函数:
dic = {"add":add}
使用该对象:
dic["add"](2,3)
结果:
>>> def add(a,b): ... print a+b ... >>> dic = {"add":add} >>> dic["add"](2,3) 5 >>>