函数特点
Posted 无所住心
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数特点相关的知识,希望对你有一定的参考价值。
#def定义的非匿名函数,不会被立即回收
‘‘‘
def foo():
print("in the foo")
bar() #foo调用的时候,还未被被定义,所以报错
foo()
‘‘‘
def bar():
print("in the bar")
def foo():
print("in the foo")
bar() #已经被定义,所以不报错
foo()
#匿名函数,内存立即回收
calc = lambda x:x*3
calc(3) #等于9
以上是关于函数特点的主要内容,如果未能解决你的问题,请参考以下文章