Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 57 for item (0.041 sec.)
6.7. readline --- GNU readline のインタフェース — Python 3.6.5 ドキュメント 7093
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 書かれる最大行数を返します。) readline. get_history_item ( index ) ¶ 現在の履歴の index 番目の項目を返します ... tory_get() が呼ばれます。 readline. remove_history_item ( pos ) ¶ 履歴から指定された位置の項目を削除します ... history() が呼ばれます。 readline. replace_history_item ( pos , line ) ¶ 指定された位置の項目を line で置き ...
https://man.plustar.jp/python/library/readline.html - [similar]
18.5.8. キュー — Python 3.6.5 ドキュメント 7019
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... チン です。 バージョン 3.4.4 で追加. coroutine put ( item ) ¶ 要素をキューに入れます。キューがいっぱいの場合 ... ルーチン です。 参考 full() メソッド。 put_nowait ( item ) ¶ ブロックせずにアイテムをキューに追加します。 直 ...
https://man.plustar.jp/python/library/asyncio-queue.html - [similar]
型オブジェクト — Python 3.6.5 ドキュメント 6946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... "<module>.<name>" */ Py_ssize_t tp_basicsize , tp_itemsize ; /* For allocation */ /* Methods to implement ... 動的な型に使います。 PyType_Type (メタタイプ) は tp_itemsize を初期化するので注意してください。すなわち、 イ ... peObject.tp_basicsize ¶ Py_ssize_t PyTypeObject.tp_itemsize ¶ これらのフィールドは、型インスタンスのバイト ... 二つの種類があります: 固定長インスタンスの型は、 tp_itemsize フィールドがゼロで、可変長インスタンスの方は t ...
https://man.plustar.jp/python/c-api/typeobj.html - [similar]
8. 複合文 (compound statement) — Python 3.6.5 ドキュメント 6946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... 再利用することができます。 with_stmt ::= "with" with_item ("," with_item)* ":" suite with_item ::= expressio ... 実行は以下のように進行します: コンテキスト式 ( with_item で与えられた式) を評価することで、コンテキストマネ ...
https://man.plustar.jp/python/reference/compound_stmts.html - [similar]
バッファプロトコル (buffer Protocol) — Python 3.6.5 ドキュメント 6872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... してはなりません。 Py_ssize_t len ¶ product(shape) * itemsize 。contiguous配列では、下層のメモリブロックの長 ... は PyBUF_WRITABLE フラグで制御できます。 Py_ssize_t itemsize ¶ 要素一つ分のbyte単位のサイズ。 struct.calcsi ... 求した場合、 format は NULL に設定されます。 しかし itemsize は元のフォーマットに従った値を保持します。 sha ... pe が存在する場合、 product(shape) * itemsize == len の等式が守られ、利用者は itemsize を bu ...
https://man.plustar.jp/python/c-api/buffer.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 6872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( 'Message-ID:' , myMessage [ 'message-id' ]) __getitem__ ( name ) ¶ Return the value of the named header ... subclass of email.headerregistry.BaseHeader . __setitem__ ( name , val ) ¶ Add a header to the message wit ... eletion of the existing header in the future. __delitem__ ( name ) ¶ メッセージのヘッダから、 name という名 ... ジ中にあるすべてのフィールドの値のリストを返します。 items ( ) ¶ メッセージ中にあるすべてのヘッダのフィールド ...
https://man.plustar.jp/python/library/email.message.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 6872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... terable) は、関数が None でなければジェネレータ式 (item for item in iterable if function(item)) と同等で、 ... 関数が None なら (item for item in iterable if item) と同等です。 functio ... か、シーケンスプロトコル (引数が 0 から開始する __getitem__() メソッド) をサポートする集合オブジェクトでなけ ... ) メソッド、および、 0 以上の整数を引数とする __getitem__() メソッド) をサポートするオブジェクトでなければ ...
https://man.plustar.jp/python/library/functions.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 6872
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... = 'J' ... TypeError: 'str' object does not support item assignment >>> word [ 2 :] = 'py' ... TypeError: ' ... str' object does not support item assignment 元の文字列と別の文字列が必要な場合は、新 ... ができます: >>> squares [ 0 ] # indexing returns the item 1 >>> squares [ - 1 ] 25 >>> squares [ - 3 :] # sl ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 6799
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... e_args = { k : v for k , v in vars ( namespace ) . items () if v } combined = ChainMap ( command_line_args ... ted values len ( d ) # Number of nested values d . items () # All nested items dict ( d ) # Flatten into a ... at allows direct updates to inner scopes' def __setitem__ ( self , key , value ): for mapping in self . ma ... e return self . maps [ 0 ][ key ] = value def __delitem__ ( self , key ): for mapping in self . maps : if ...
https://man.plustar.jp/python/library/collections.html - [similar]
31.2. pkgutil --- パッケージ拡張ユーティリティ — Python 3.6.5 ドキュメント 6799
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ースに更新されました。 pkgutil. get_importer ( path_item ) ¶ Retrieve a finder for the given path_item . Th ...
https://man.plustar.jp/python/library/pkgutil.html - [similar]
PREV 1 2 3 4 5 6 NEXT