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
- python---之nan,infPythonNaN
- Rust中的iter(), into_iter(), iter_mut()Rust
- python---之numpy.pad()Python
- python---之cls,和selfPython
- python---之sorted函式Python函式
- python---之物件導向selfPython物件
- python---之if _name_ == '_main_'PythonAI
- python---之table寫hdf5檔案Python
- 010 透過連結串列學習Rust之IterRust
- 010 通過連結串列學習Rust之IterRust
- 深入 Python iter() 方法Python
- Python---字典方法Python
- python--iter()+next()+sum()Python
- python---多工程式Python
- python---字典遍歷Python
- python---函式定義Python函式
- python--- 之The program 'python' can be found in the following packages: * python-minimal * python3PythonPackage
- python---核心知識12之物件導向三大特性補充Python物件
- python---之編譯型語言和解釋型語言的區別Python編譯
- www.80iter.com上線了
- python---函式引數、變數Python函式變數
- 80iter.com站內技術點分析
- python如何使用__iter__()展現外部狀態Python
- 80iter線上工具模組上線啦!
- Python---資料科學領域常用的15個Python包Python資料科學
- Python requests 庫中 iter_lines 方法的流式傳輸最佳化Python
- 迭代器與可迭代物件的區別,以及iter()函式的使用。物件函式
- Python中可迭代物件、迭代器以及iter()函式的兩個用法詳解Python物件函式
- 漢字之美,拼音之韻
- PHP之string之ord()函式使用PHP函式
- 深入Spring之IOC之載入BeanDefinitionSpringBean
- JavaScript之thisJavaScript
- 若之
- 計算方法之祖沖之的精度
- Kubernetes安裝之八:配置master之schedulerAST
- vue 兄弟元件之間傳值之busVue元件
- 《碼農翻身》之浪潮之巔的WebWeb