手机
当前位置:查字典教程网 >脚本专栏 >python >python回调函数的使用方法
python回调函数的使用方法
摘要:有两种类型的回调函数:复制代码代码如下:blockingcallbacks(alsoknownassynchronouscallbackso...

有两种类型的回调函数:

复制代码 代码如下:

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)

【python回调函数的使用方法】相关文章:

pydev使用wxpython找不到路径的解决方法

Python获取当前时间的方法

python条件和循环的使用方法

python33 urllib2使用方法细节讲解

Python GAE、Django导出Excel的方法

python类型强制转换long to int的代码

Python 返回汉字的汉语拼音

python二叉树遍历的实现方法

python创建只读属性对象的方法(ReadOnlyObject)

python 文件和路径操作函数小结

精品推荐
分类导航