您好,登錄后才能下訂單哦!
了解python中yield指的是什么?這個問題可能是我們?nèi)粘W(xué)習(xí)或工作經(jīng)常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!
python中yield什么意思?
可迭代對象
mylist 是一個可迭代的對象。當(dāng)你使用一個列表生成式來建立一個列表的時候,就建立了一個可迭代的對象:
>>> mylist = [x*x for x in range(3)] >>> for i in mylist : ... print(i)
在這里,所有的值都存在內(nèi)存當(dāng)中,所以并不適合大量數(shù)據(jù)
生成器
可迭代
只能讀取一次
實時生成數(shù)據(jù),不全存在內(nèi)存中
>>> mygenerator = (x*x for x in range(3)) >>> for i in mygenerator : ... print(i)
注意你之后不能再使用for i in mygenerator了
yield關(guān)鍵字
yield 是一個類似 return 的關(guān)鍵字,只是這個函數(shù)返回的是個生成器
當(dāng)你調(diào)用這個函數(shù)的時候,函數(shù)內(nèi)部的代碼并不立馬執(zhí)行 ,這個函數(shù)只是返回一個生成器對象
當(dāng)你使用for進行迭代的時候,函數(shù)中的代碼才會執(zhí)行
>>> def createGenerator() : ... mylist = range(3) ... for i in mylist : ... yield i*i ... >>> mygenerator = createGenerator() # create a generator >>> print(mygenerator) # mygenerator is an object! <generator object createGenerator at 0xb7555c34> >>> for i in mygenerator: ... print(i)
第一次迭代中你的函數(shù)會執(zhí)行,從開始到達 yield 關(guān)鍵字,然后返回 yield 后的值作為第一次迭代的返回值. 然后,每次執(zhí)行這個函數(shù)都會繼續(xù)執(zhí)行你在函數(shù)內(nèi)部定義的那個循環(huán)的下一次,再返回那個值,直到?jīng)]有可以返回的。
控制生成器的窮盡
>>> class Bank(): # let's create a bank, building ATMs ... crisis = False ... def create_atm(self) : ... while not self.crisis : ... yield "$100" >>> hsbc = Bank() # when everything's ok the ATM gives you as much as you want >>> corner_street_atm = hsbc.create_atm() >>> print(corner_street_atm.next()) $100 >>> print(corner_street_atm.next()) $100 >>> print([corner_street_atm.next() for cash in range(5)]) ['$100', '$100', '$100', '$100', '$100'] >>> hsbc.crisis = True # crisis is coming, no more money! >>> print(corner_street_atm.next()) <type 'exceptions.StopIteration'> >>> wall_street_atm = hsbc.create_atm() # it's even true for new ATMs >>> print(wall_street_atm.next()) <type 'exceptions.StopIteration'> >>> hsbc.crisis = False # trouble is, even post-crisis the ATM remains empty >>> print(corner_street_atm.next()) <type 'exceptions.StopIteration'> >>> brand_new_atm = hsbc.create_atm() # build a new one to get back in business >>> for cash in brand_new_atm : ... print cash $100 $100 $100 $100 $100 $100 $100 $100 $100 ...
感謝各位的閱讀!看完上述內(nèi)容,你們對python中yield指的是什么大概了解了嗎?希望文章內(nèi)容對大家有所幫助。如果想了解更多相關(guān)文章內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。