python回调函数简单示例

发布时间:2020-12-12编辑:脚本学堂
分享下python编程中中回调函数的小例子,有研究python回调函数的朋友,可以做个参考。

回调函数,或简称回调(Callback),是指通过函数参数传递到其它代码的,某一块可执行代码的引用。
这一设计允许了底层代码调用在高层定义的子程序。

python中有两种类型的回调函数:
 

blocking callbacks (also known as synchronous callbacks or just callbacks)
deferred callbacks (also known as asynchronous callbacks)

例子,在python中实现回调函数。
 

复制代码 代码示例:

def my_callback(input):
    print "function my_callback was called with %s input" % (input,)

def caller(input, func):
    func(input)

for i in range(5):
    caller(i, my_callback)