函數(shù)作為返回值
函數(shù)除了作為代碼塊,作為接收參數(shù),還可以把函數(shù)作為結(jié)果返回。 例子:
可變參數(shù)的求和:
通常
def calc_sum(*args):
ax = 0
for n in args:
ax = ax + n
return ax
如果,不需要立即求和,而是在后面根據(jù)需要在計算,那就可以不返回求和結(jié)果,而是這個函數(shù):
def lazy_sum(*args):
def sum():
ax = 0
for n in args:
ax = ax + n
return ax
return sum
調(diào)用lazy_sum()
時,返回的并不是求和結(jié)果,而是求和函數(shù):
>> > f = lazy_sum(1, 3, 5, 7, 9)
>> > f
< function lazy_sum.< locals >.sum at 0x101c6ed90 >
調(diào)用函數(shù)f時,才真正計算求和的結(jié)果:
>> > f()
25
每次的調(diào)用都會返回一個新的函數(shù),即使是傳入相同的參數(shù)。
-
函數(shù)
+關(guān)注
關(guān)注
3文章
4331瀏覽量
62622 -
代碼
+關(guān)注
關(guān)注
30文章
4788瀏覽量
68616 -
python
+關(guān)注
關(guān)注
56文章
4797瀏覽量
84690
發(fā)布評論請先 登錄
相關(guān)推薦
評論