python---之iter
Python iter() 函式
描述
iter() 函式用來生成迭代器。
語法
以下是 iter() 方法的語法:
iter(object[, sentinel])
引數
- object -- 支援迭代的集合物件。
- sentinel -- 如果傳遞了第二個引數,則引數 object 必須是一個可呼叫的物件(如,函式),此時,iter 建立了一個迭代器物件,每次呼叫這個迭代器物件的__next__()方法時,都會呼叫 object。開啟模式
返回值
迭代器物件。
例項
>>>lst = [1, 2, 3]>>> for i in iter(lst):... print(i)... 123
轉載:http://www.runoob.com/python/python-func-iter.html
相關文章
- python---之yamlPythonYAML
- Rust中的iter(), into_iter(), iter_mut()Rust
- python---之nan,infPythonNaN
- python---之sorted函式Python函式
- python---之cls,和selfPython
- python---之numpy.pad()Python
- python---之if _name_ == '_main_'PythonAI
- python---之物件導向selfPython物件
- python---之table寫hdf5檔案Python
- 深入 Python iter() 方法Python
- Python---字典方法Python
- 010 通過連結串列學習Rust之IterRust
- 010 透過連結串列學習Rust之IterRust
- The ITer should learn more about ITIL
- python---多工程式Python
- python---字典遍歷Python
- python--iter()+next()+sum()Python
- python---函式定義Python函式
- python---核心知識12之物件導向三大特性補充Python物件
- www.80iter.com上線了
- python---之編譯型語言和解釋型語言的區別Python編譯
- python---函式引數、變數Python函式變數
- 80iter.com站內技術點分析
- 80iter線上工具模組上線啦!
- python如何使用__iter__()展現外部狀態Python
- python--- 之The program 'python' can be found in the following packages: * python-minimal * python3PythonPackage
- 迭代器與可迭代物件的區別,以及iter()函式的使用。物件函式
- Python---資料科學領域常用的15個Python包Python資料科學
- Python中可迭代物件、迭代器以及iter()函式的兩個用法詳解Python物件函式
- Python requests 庫中 iter_lines 方法的流式傳輸最佳化Python
- IBM 的另一面http://www-31.ibm.com/innovation/cn/iter/2011v17/IBMHTTP
- oracle之 RAC Interconnect之HAIPOracleAI
- 漢字之美,拼音之韻
- Python基礎之(三)之字典Python
- 設計模式之禪之代理模式設計模式
- 程式碼之美---遞迴之美遞迴
- 科學之抽象管理之提升抽象
- JavaScript之thisJavaScript