溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

函數(shù)生成器

發(fā)布時(shí)間:2020-07-24 08:24:46 來(lái)源:網(wǎng)絡(luò) 閱讀:411 作者:wx59f985b4c2ab5 欄目:編程語(yǔ)言

****生成器


生成器指生成器對(duì)象,可以由生成器表達(dá)式得到,也可以用yield關(guān)鍵字得到一個(gè)生成器函數(shù),
調(diào)用這個(gè)函數(shù)得到一個(gè)生成器對(duì)象

延遲計(jì)算,惰性求值


yield:生成器返回值(惰性)


def inc():
for i in range(5):
print("~")
yield i
print("+++")

第一次 next(inc())
~
1

第二次next(inc())
+++
~ ~~
2
.
.
.

返回生成器對(duì)象


第一次先執(zhí)行到y(tǒng)ield語(yǔ)句,之后暫停
再次調(diào)用繼續(xù)執(zhí)行

出現(xiàn)return 或走完循環(huán),報(bào)錯(cuò)誤,代表生命走到盡頭
return的值拿不到,拋出stopiteration異常

一般情況只要yield值

def inc():
def counter():
count = 0
while True:
count += 1
yield count
c = counter()
return lambda :next(c)
g = inc()
print(g())
print(g())
print(g())


send  
返回并進(jìn)行值交互:

例:


def counter():
count = 0
while True:
count += 1
response = yield count ****
c = counter()

c.send(100) #response = 100
如果不用send,則response的值為None

yield from 語(yǔ)法:
for x in c: yield from c
yield x =>

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI