Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 53 for iter (0.010 sec.)
19.1.2. email.parser: 電子メールメッセージのパース — Python 3.6.5 ドキュメント 8022
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... payload manipulation methods, such as get_body() , iter_parts() , and walk() . There are actually two pars ... objects will return False for is_multipart() , and iter_parts() will yield an empty list. All multipart ty ... message will return True for is_multipart() , and iter_parts() will yield a list of subparts. Most messag ... d will return True . The single element yielded by iter_parts() will be a sub-message object. Some non-sta ...
https://man.plustar.jp/python/library/email.parser.html - [similar]
31.2. pkgutil --- パッケージ拡張ユーティリティ — Python 3.6.5 ドキュメント 8022
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... で変更: PEP 451 ベースに更新されました。 pkgutil. iter_importers ( fullname='' ) ¶ Yield finder objects f ... 的に importlib に基くように更新されました。 pkgutil. iter_modules ( path=None , prefix='' ) ¶ Yields ModuleI ... のモジュール名の頭に出力する文字列です。 注釈 これは iter_modules() メソッドを定義している finder に対しての ... . __path__ , ctypes . __name__ + '.' ) 注釈 これは iter_modules() メソッドを定義している finder に対しての ...
https://man.plustar.jp/python/library/pkgutil.html - [similar]
20.5. xml.etree.ElementTree --- ElementTree XML API — Python 3.6.5 ドキュメント 7933
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... いが、インクリメンタルにパースする能力が欲しい場合、 iterparse() を参照してください。大きな XML ドキュメント ... 関心ある要素の検索 ¶ Element は、例えば、 Element.iter() などの、配下 (その子ノードや孫ノードなど) の部分 ... つメソッドを持っています: >>> for neighbor in root . iter ( 'neighbor' ): ... print ( neighbor . attrib ) .. ... dated 属性を追加したい場合: >>> for rank in root . iter ( 'rank' ): ... new_rank = int ( rank . text ) + 1 ...
https://man.plustar.jp/python/library/xml.etree.elementtree.html - [similar]
10. 完全な文法仕様 — Python 3.6.5 ドキュメント 7933
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... nts are blocked; keyword unpackings # that precede iterable unpackings are blocked; etc. argument : ( test ... or ] | test '=' test | '**' test | '*' test ) comp_iter : comp_for | comp_if comp_for : [ ASYNC ] 'for' ex ... prlist 'in' or_test [ comp_iter ] comp_if : 'if' test_nocond [ comp_iter ] # not u ...
https://man.plustar.jp/python/reference/grammar.html - [similar]
イテレータオブジェクト (iterator object) — Python 3.6.5 ドキュメント 7829
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... (concrete object) レイヤ » イテレータオブジェクト (iterator object) ¶ Python では二種類のイテレータオブジェ ... されたときに反復処理を終了します。 PyTypeObject PySeqIter_Type ¶ PySeqIter_New() や、組み込みシーケンス型に対 ... して 1 引数形式の組み込み関数 iter() を呼び出したときに返される、イテレータオブジェク ... トの型オブジェクトです。 int PySeqIter_Check ( op ) ¶ PySeqIter_Type の型が op のときに真 ...
https://man.plustar.jp/python/c-api/iterator.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 7724
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ます。 UNARY_INVERT ¶ TOS = ~TOS を実行します。 GET_ITER ¶ TOS = iter(TOS) を実行します。 GET_YIELD_FROM_IT ... ER ¶ TOS が generator iterator もしくは coroutine オブジェクトの場合は、そのま ... まにしておきます。 そうでない場合は TOS = iter(TOS) を実行します。 バージョン 3.5 で追加. 2オペラ ... able(o) は、 o がコルーチンオブジェクトもしくは CO_ITERABLE_COROUTINE フラグの付いたジェネレータオブジェク ...
https://man.plustar.jp/python/library/dis.html - [similar]
9. クラス — Python 3.6.5 ドキュメント 7724
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... です。例えば: class Mapping : def __init__ ( self , iterable ): self . items_list = [] self . __update ( it ... erable ) def update ( self , iterable ): for item in iterable : self . items_list . ... ドに対応する関数オブジェクトです。 9.8. イテレータ (iterator) ¶ すでに気づいているでしょうが、 for 文を使う ... います。裏では for 文はコンテナオブジェクトに対して iter() 関数を呼んでいます。関数は、コンテナの中の要素に ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 7427
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ilter() issubclass() pow() super() bytes() float() iter() print() tuple() callable() format() len() proper ... 数なら、その絶対値 (magnitude) が返されます。 all ( iterable ) ¶ iterable の全ての要素が真ならば (もしくは ... True を返します。以下のコードと等価です: def all ( iterable ): for element in iterable : if not element : ... return False return True any ( iterable ) ¶ iterable のいずれかの要素が真ならば True を ...
https://man.plustar.jp/python/library/functions.html - [similar]
用語集 — Python 3.6.5 ドキュメント 7233
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » 用語集 ¶ >>> インタ ... k or within a pair of matching left and right delimiters (parentheses, square brackets or curly braces). 2 ... は引数リストの先頭に書くことができ、また * に続けた iterable の要素として渡すことができます。例えば、次の例 ... erator (非同期ジェネレータ) asynchronous generator iterator を返す関数です。 async def で定義されたコルーチ ... it 式もあることがあります。 asynchronous generator iterator (非同期ジェネレータイテレータ) asynchronous ge ...
https://man.plustar.jp/python/glossary.html - [similar]
10. 関数型プログラミング用モジュール — Python 3.6.5 ドキュメント 7233
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... この章では以下のモジュールが解説されています: 10.1. itertools --- 効率的なループ実行のためのイテレータ生成関 ... 数 10.1.1. Itertool関数 10.1.2. Itertools レシピ 10.2. functools - ... ーワード: モジュール , 関数 , ドキュメント , 標準 , iter , オブジェクト , 索引 , Software , 生成 , 実行 前の ... . statistics --- 数理統計関数 次のトピックへ 10.1. itertools --- 効率的なループ実行のためのイテレータ生成関 ...
https://man.plustar.jp/python/library/functional.html - [similar]
PREV 1 2 3 4 5 6 NEXT