Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 91 for dict (0.052 sec.)
26.3. doctest --- 対話的な実行例をテストする — Python 3.6.5 ドキュメント 6237
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 照できません。 testmod() や testfile() に globs=your_dict を渡し、自前の辞書を実行コンテキストとして使うこと ... 実行する際にグローバル変数にマージされます。マージは dict.update() のように振舞います: globs と extraglobs と ... 引数と同じです。ただし、 globs のデフォルト値は m.__dict__ になります。 doctest. run_docstring_examples ( f ... ト値は、モジュールを指定していればそのモジュールの __dict__ になり、指定していなければ {} になります。 extra ...
https://man.plustar.jp/python/library/doctest.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 6237
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ンドラを定義することで設定できます。 logging.config. dictConfig ( config ) ¶ 辞書からロギング環境設定を取得し ... 内部や外部のオブジェクトに関わる不可能性。 解析は DictConfigurator クラスによって行われます。このクラスの ... ます。 logging.config モジュールは、呼び出し可能属性 dictConfigClass を持ち、これはまず DictConfigurator に設 ... 定されます。 dictConfigClass の値は適切な独自の実装で置き換えられます ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 6237
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... インスタンスのようなイミュータブルなシーケンスは、 dict のキーとして使え、 set や frozenset インスタンスに ... イシング操作をサポートしないミュータブルなコンテナ ( dict や set など) のインタフェースとの一貫性のために含ま ... タブルなシーケンスが必要な場合 ( set インスタンスや dict インスタンスに保存できるようにするためなど) にも使 ... str.format(**mapping) と似ていますが、 mapping は dict にコピーされず、直接使われます。これは例えば mappi ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 6131
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... y_BuildValue() を作って辞書を作ります。 PyObject * dict ; ... dict = Py_BuildValue ( "{s:i}" , "name" , va ... l ); result = PyObject_Call ( my_callback , NULL , dict ); Py_DECREF ( dict ); if ( result == NULL ) retur ... seTupleAndKeywords ( PyObject * arg , PyObject * kwdict , const char * format , char * kwlist [], ...); ar ... パラメタは PyArg_ParseTuple() のものと同じです。 kwdict パラメタはキーワード引数の入った辞書で、 Python ラ ...
https://man.plustar.jp/python/extending/extending.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 6131
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... または tuple 。array は list として返します。 struct dict . Keys must be strings, values may be any conforma ... ser-defined classes can be passed in; only their __dict__ attribute is transmitted. dateTime.iso8601 DateT ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
9. クラス — Python 3.6.5 ドキュメント 6131
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... setattr() と delattr() にも適用されます。また、 __dict__ を直接参照するときにも適用されます。 9.7. 残りの ... line in page for word in line . split ()) >>> valedictorian = max (( student . gpa , student . name ) for ... モジュールオブジェクトには、秘密の読取り専用の属性 __dict__ があり、モジュールの名前空間を実装するために使わ ... れている辞書を返します; __dict__ という名前は属性ですが、グローバルな名前ではあり ...
https://man.plustar.jp/python/tutorial/classes.html - [similar]
What's New in Python 2.1 — Python 3.6.5 ドキュメント 6131
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... as integers, but it has a side effect; the _cache dictionary holds a reference to the return values, so t ... "A ::= B (C D)*" 属性を含んだ辞書に、関数の属性 __dict__ としてアクセス出来ます。クラスインスタンスの __d ... ict__ 属性とは違って、関数では実際には、 __dict__ に別の辞書を代入出来ます。ですが、新しい値は普通 ... 辞書に制限されています; ズルは 出来ません し、 UserDict インスタンスやなにかほかのマッピングのように振舞う ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
8.10. copy --- 浅いコピーおよび深いコピー操作 — Python 3.6.5 ドキュメント 6011
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ールでの扱われかたと同じです。 辞書型の浅いコピーは dict.copy() で、リストの浅いコピーはリスト全体を指すスラ ...
https://man.plustar.jp/python/library/copy.html - [similar]
8. データ型 — Python 3.6.5 ドキュメント 6011
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の他にもいくつかの組み込みデータ型があります。特に、 dict 、 list 、 set 、 frozenset 、そして tuple がありま ... オブジェクト 8.3.3.1. deque のレシピ 8.3.4. defaultdict オブジェクト 8.3.4.1. defaultdict の使用例 8.3.5. ... フィールドを持つタプルのファクトリ関数 8.3.6. OrderedDict オブジェクト 8.3.6.1. OrderedDict の例とレシピ 8.3 ... .7. UserDict オブジェクト 8.3.8. UserList オブジェクト 8.3.9. U ...
https://man.plustar.jp/python/library/datatypes.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 6011
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ra で、当該ログイベント用に作られる LogRecoed の __dict__ にユーザー定義属性を加えるのに使われる辞書を渡す ... extra ) ¶ 内部で使う Logger インスタンスと辞書風 (dict-like) オブジェクトで初期化した LoggerAdapter のイン ... ra で、当該ログイベント用に作られる LogRecoed の __dict__ にユーザー定義属性を加えるのに使われる辞書を渡す ... で元に戻されました。 logging. makeLogRecord ( attrdict ) ¶ 属性が attrdict で定義された、新しい LogRecord ...
https://man.plustar.jp/python/library/logging.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT