Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 58 for items (0.027 sec.)
10.3. operator --- 関数形式の標準演算子 — Python 3.6.5 ドキュメント 12953
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ast) を返します。 次と等価です: def attrgetter ( * items ): if any ( not isinstance ( item , str ) for item ... in items ): raise TypeError ( 'attribute name must be a str ... ing' ) if len ( items ) == 1 : attr = items [ 0 ] def g ( obj ): return ... rn tuple ( resolve_attr ( obj , attr ) for attr in items ) return g def resolve_attr ( obj , attr ): for na ...
https://man.plustar.jp/python/library/operator.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 12397
ナビゲーション 索引 モジュール | 次へ | 前へ | 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 ... t dict ( c ) # convert to a regular dictionary c . items () # convert to a list of (elem, cnt) pairs Counte ... d = deque ( 'ghi' ) # make a new deque with three items >>> for elem in d : # iterate over the deque's ele ...
https://man.plustar.jp/python/library/collections.html - [similar]
25.2. tkinter.ttk --- Tk のテーマ付きウィジェット — Python 3.6.5 ドキュメント 12222
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... を付けてこのメソッドを呼び出してください。 delete ( *items ) ¶ 指定された items とその子孫たち全てを削除します ... 。 ルート要素は削除されません。 detach ( *items ) ¶ 指定された items を全てツリーから切り離します。 ... ットをスクロールさせます。 selection ( selop=None , items=None ) ¶ selop が指定されなかった場合は、選択されて ... d", "remove", "toggle" のうち 1 つが指定できます。 items にはそれぞれのメソッドの引数を指定します。) Deprec ...
https://man.plustar.jp/python/library/tkinter.ttk.html - [similar]
引数の解釈と値の構築 — Python 3.6.5 ドキュメント 10407
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 値判定 を参照してください。 バージョン 3.3 で追加. (items) ( tuple ) [ matching-items ] オブジェクトは items ... on のシーケンス型でなければなりません。各 C 引数は items 内の個々の書式単位に対応づけできなければなりません ... た場合には NULL を返すようにしなければなりません。 (items) ( tuple ) [ matching-items ] C の値からなる配列を ... 、同じ要素数を持つ Python のタプルに変換します。 [items] ( list ) [ matching-items ] C の値からなる配列を、 ...
https://man.plustar.jp/python/c-api/arg.html - [similar]
17.7. queue --- 同期キュークラス — Python 3.6.5 ドキュメント 9499
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... er that sets the upperbound limit on the number of items that can be placed in the queue. Insertion will bl ... ock once this size has been reached, until queue items are consumed. If maxsize is less than or equal to ... er that sets the upperbound limit on the number of items that can be placed in the queue. Insertion will bl ... ock once this size has been reached, until queue items are consumed. If maxsize is less than or equal to ...
https://man.plustar.jp/python/library/queue.html - [similar]
8.9. types --- 動的な型生成と組み込み型に対する名前 — Python 3.6.5 ドキュメント 8957
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のメソッドが KeyError を発生させることはありません。 items ( ) ¶ 元になったマッピングの items ( (key, value) ... repr__ ( self ): keys = sorted ( self . __dict__ ) items = ( " {} = {!r} " . format ( k , self . __dict__ [ ... format ( type ( self ) . __name__ , ", " . join ( items )) def __eq__ ( self , other ): return self . __di ...
https://man.plustar.jp/python/library/types.html - [similar]
21.16. nntplib --- NNTP プロトコルクライアント — Python 3.6.5 ドキュメント 8416
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... h overview is a dictionary with the same number of items, but this number depends on the server. These item ... y is then the lower-cased header name) or metadata items (the key is then the metadata name prepended with ... ":" ). The following items are guaranteed to be present by the NNTP specifica ...
https://man.plustar.jp/python/library/nntplib.html - [similar]
14.2. configparser --- 設定ファイルのパーサー — Python 3.6.5 ドキュメント 8226
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... と旧式の configparser API の両方に互換です。 parser.items() はマップ型プロトコルと互換です (DEFAULTSECT を含 ... 対のリストを返します)。ただし、このメソッドは parser.items(section, raw, vars) のようにして引数を与えることで ... d_dict ( dictionary , source='<dict>' ) ¶ 辞書的な items() メソッドを提供する任意のオブジェクトから設定を読 ... および fallback の説明は get() を参照してください。 items ( raw=False , vars=None ) ¶ items ( section , raw= ...
https://man.plustar.jp/python/library/configparser.html - [similar]
26.7. 2to3 - Python 2 から 3 への自動コード変換 — Python 3.6.5 ドキュメント 8050
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 辞書をイテレートするメソッドを修正します。 dict.iteritems() は dict.items() に、 dict.iterkeys() は dict.key ... ) は dict.values() に変換されます。同様に dict.viewitems() , dict.viewkeys() dict.viewvalues() はそれぞれ d ... ict.items() , dict.keys() , dict.values() に変換されます。ま ... た、 list の呼び出しの中で dict.items() , dict.keys() , dict.values() を使用している場合 ...
https://man.plustar.jp/python/library/2to3.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 8050
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . encode ( "utf-8" ) for key , value in environ . items ()] return ret with make_server ( '' , 8000 , simp ... せん。 Headers オブジェクトは keys() 、 values() 、 items() メソッドもサポートします。複数の値を持つヘッダが ... ある場合には、 keys() と items() で返されるリストは同じキーを一つ以上含むことがあ ... ります。 Headers オブジェクトの len() は、その items() の長さと同じであり、ラップされたヘッダリストの長 ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
PREV 1 2 3 4 5 6 NEXT