标签:返回 png pre div col 阶段 span com 实参
高阶函数
#高阶函数 #类型1:将函数作为实参的函数,可以称为高阶函数 def test1(test2): #test1为高阶段函数 print(‘GL‘) test2() def test2(): print(‘HF‘) test1(test2) #类型2:返回值中包含函数名的函数,也可以成为高阶函数 def test3(test): #test3为高阶函数 print(‘3‘) return test def test4(): print(‘4‘) #test3(test4) ()#返回值可以直接运行 test = test3(test4) #可以将返回值赋予一个变量 test() #可以调用函数
最简单的装饰体
标签:返回 png pre div col 阶段 span com 实参
原文地址:http://www.cnblogs.com/crazybird911/p/7841257.html