Python基础系列-回调函数

版权声明:如需转载,请注明转载地址。 https://blog.csdn.net/oJohnny123/article/details/81980170
def test(num):
    for i in range(num):
        print 'hello,world'

def test2(num):
    print(num)


def call(times,funcname):
    return funcname(times)


for i in xrange(6):
    if i < 3:
        call(i,test)
    else:
        call(i,test2)
        

 

上一篇:经典算法题每日演练——第九题 优先队列


下一篇:使用Python-Flask框架开发Web网站系列课程(二)注册功能