python之yield表達式

来源:https://www.cnblogs.com/xkxjy/archive/2018/10/06/9747754.html
-Advertisement-
Play Games

yield表達式用於generator function 調用generator function時,返回一個iterator(函數內語句不被會執行),調用iterator函數時,執行到yield表達式, 當前函數暫停執行,返回表達式的值到調用者,繼續調用iterator函數,從暫停處恢復執行。、 ...


yield表達式用於generator function

調用generator function時,返回一個iterator(函數內語句不被會執行),調用iterator函數時,執行到yield表達式,

當前函數暫停執行,返回表達式的值到調用者,繼續調用iterator函數,從暫停處恢復執行。、

遇到yield表達式,與遇到其他表達式差不多,yield表達式也有值,一般為None。

與其他表達式的不同之處在於yield表達式會在yield處返回表達式的值

官方文檔描述如下:

    When a generator function is called, it returns an iterator known as a generator. That generator then controls the execution of the generator function. The execution starts when one of the generator’s methods is called. At that time, the execution proceeds to the first yield expression, where it is suspended again, returning the value of expression_list to the generator’s caller. By suspended, we mean that all local state is retained, including the current bindings of local variables, the instruction pointer, the internal evaluation stack, and the state of any exception handling. When the execution is resumed by calling one of the generator’s methods, the function can proceed exactly as if the yield expression were just another external call. The value of the yield expression after resuming depends on the method which resumed the execution. If __next__() is used (typically via either a for or the next() builtin) then the result is None. Otherwise, if send() is used, then the result will be the value passed in to that method.

    Yield expressions are allowed anywhere in a try construct. If the generator is not resumed before it is finalized (by reaching a zero reference count or by being garbage collected), the generator-iterator’s close() method will be called, allowing any pending finally clauses to execute.

    When the underlying iterator is complete, the value attribute of the raised StopIteration instance becomes the value of the yield expression. 

官方例子:

>>> def echo(value=None):
...     print("Execution starts when 'next()' is called for the first time.")
...     try:
...         while True:
...             try:
...                 value = (yield value)
...             except Exception as e:
...                 value = e
...     finally:
...         print("Don't forget to clean up when 'close()' is called.")
...
>>> generator = echo(1)
>>> print(next(generator))
Execution starts when 'next()' is called for the first time.
1
>>> print(next(generator))
None
>>> print(generator.send(2))
2
>>> generator.throw(TypeError, "spam")
TypeError('spam',)
>>> generator.close()
Don't forget to clean up when 'close()' is called.

模擬個iteratorrange函數

def my_range(start, stop=None, step=1):
    if not stop:
        stop = start
        start = 0
    while start < stop:
        yield start
        start += step


if __name__ == '__main__':
    for i in my_range(10):
        print(i)
    for i in my_range(0, 10):
        print(i)
    for i in my_range(0, 10, 2):
        print(i)

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • SpringData 整合源碼:鏈接: https://pan.baidu.com/s/1_dDEEJoqaBTfXs2ZWsvKvA 提取碼: cp6s(jar包自行尋找) author:SimpleWu time: 2018 10 06 20:51 1.SpringData概述 Spring D ...
  • The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better tha ...
  • 鏈接:https://www.nowcoder.com/acm/contest/206/B來源:牛客網 題目描述 恬恬有一個nx n的數組。她在用這個數組玩游戲: 開始時,數組中每一個元素都是0。 恬恬會做某些操作。在一次操作中,她可以將某一行的所有元素同時加上一個值,也可以將某一列的所有元素同時加 ...
  • 我先說說feed流吧,它就是社交網站中用戶活動信息流,例如用戶寫了博客、發了照片、評論了什麼等等。Facebook叫newsFeed、推特叫TimeLineFeed。ActivityStream是這些feed規範,它有演員、動作、對象、目標等重要元素組成。用ActivityStream作為信息模型具 ...
  • if語句 * if語句有三種格式 * * if語句格式1: * if(關係表達式){ * 語句體; * } * * 執行順序: * A:首先計算關係表達式的值,看是true還是false * B: 如果是true,執行語句體, * C:如果是false,就不做執行語句體 * * 不影響其它語句的執行 ...
  • 1003 我要通過! (20 分) “ 答案正確 ”是自動判題系統給出的最令人歡喜的回覆。本題屬於 PAT 的“ 答案正確 ”大派送 —— 只要讀入的字元串滿足下列條件, 系統就輸出“ 答案正確 ”,否則輸出“ 答案錯誤”。 得到“ 答案正確 ”的條件是: 字元串中必須僅有 P 、 A 、 T 這三 ...
  • 前面提及過,音頻指紋演算法的思路。 也梳理開源了兩個比較經典的演算法。 https://github.com/cpuimage/shazam https://github.com/cpuimage/AudioFingerprinter 後來一段時間,稍微看了下這兩個演算法,還有不少可以精簡優化的空間。 例 ...
  • 前言 字元串基礎(String) python中字元的定義使用單引號或者雙引號都可以,例如: 註意:在python3中input獲取鍵盤輸入的數據,都以字元串的方式進行保存,即使輸入的是數字。 下標&切片 1.下標 下標:可以理解為數組類數據類型內元素的索引。列表與元組支持下標索引,字元串是字元的數 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...