python回调函数的使用方法

WBOY
Release: 2016-06-16 08:45:30
Original
1364 people have browsed it

有两种类型的回调函数:

复制代码 代码如下:

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)
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!