Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 98 for key (0.043 sec.)
8.5. heapq --- ヒープキューアルゴリズム — Python 3.6.5 ドキュメント 7631
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... く汎用関数を提供します。 heapq. merge ( *iterables , key=None , reverse=False ) ¶ 複数のソートされた入力をマ ... らはキーワード引数として指定されなければなりません。 key は 1 つの引数からなる key function を指定します。こ ... マージされます。 バージョン 3.5 で変更: オプションの key 引数および reverse 引数を追加. heapq. nlargest ( n ... , iterable , key=None ) ¶ iterable で定義されるデータセットのうち、 ...
https://man.plustar.jp/python/library/heapq.html - [similar]
35.12. nis --- Sun の NIS (Yellow Pages) へのインタフェース — Python 3.6.5 ドキ... 7513
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ジュールでは以下の関数を定義しています: nis. match ( key , mapname , domain=default_domain ) ¶ mapname 中で ... key に一致するものを返すか、見つからない場合にはエラー ... nis.error ) を送出します。両方の引数とも文字列で、 key は 8 ビットクリーンです。返される値は ( NULL その他 ... s. cat ( mapname , domain=default_domain ) ¶ match(key, mapname)==value となる key を value に対応付ける辞 ...
https://man.plustar.jp/python/library/nis.html - [similar]
10.1. itertools --- 効率的なループ実行のためのイテレータ生成関数 — Python 3.6.5... 7343
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... x%2, range(10)) --> 0 2 4 6 8 groupby() iterable[, key] sub-iterators grouped by value of key(v) islice() ... ate ( x ): yield x itertools. groupby ( iterable , key=None ) ¶ 同じキーをもつような要素からなる iterable ... 、キーとグループを返すようなイテレータを作成します。 key は各要素に対するキー値を計算する関数です。キーを指 ... 定しない場合や None にした場合、 key 関数のデフォルトは恒等関数になり要素をそのまま返し ...
https://man.plustar.jp/python/library/itertools.html - [similar]
Python で Curses プログラミング — Python 3.6.5 ドキュメント 7108
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Pyth ... essable text output and full support for mouse and keyboard input. Python の curses module ¶ The Python m ... curses applications turn off automatic echoing of keys to the screen, in order to be able to read keys a ... リケーションを書けるように、 curses はそれを curses.KEY_LEFT のような特別な値を返して行ってくれます。 curs ... ーパッドモードを有効にする必要があります。 stdscr . keypad ( True ) curses アプリケーションを終了させるのは ...
https://man.plustar.jp/python/howto/curses.html - [similar]
8.9. types --- 動的な型生成と組み込み型に対する名前 — Python 3.6.5 ドキュメント 7069
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 更を反映するということです。 バージョン 3.3 で追加. key in proxy 元になったマッピングが key というキーを持 ... を返します。そうでなければ False を返します。 proxy[key] 元になったマッピングの key というキーに対応するア ... イテムを返します。 key が存在しなければ、 KeyError が発生します。 iter(pr ... ーを列挙するイテレータを返します。これは iter(proxy.keys()) のショートカットです。 len(proxy) 元になったマ ...
https://man.plustar.jp/python/library/types.html - [similar]
19.1.7. email.contentmanager: MIME 内容の管理 — Python 3.6.5 ドキュメント 6951
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... data. To find the handler, look for the following keys in the registry, stopping with the first one foun ... maintype を表す文字列 空の文字列 If none of these keys produce a handler, raise a KeyError for the full ... bj ( typ = type(obj) ), and look for the following keys in the registry, stopping with the first one foun ... s in the MRO ( typ.__mro__ ). Finally, if no other key yields a handler, check for a handler for the key ...
https://man.plustar.jp/python/library/email.contentmanager.html - [similar]
21.23. http.cookies --- HTTPの状態管理 — Python 3.6.5 ドキュメント 6873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... !#$%&'*+-.^_`|~: を、このモジュールは Cookie 名 ( key ) として有効と認めています。 バージョン 3.3 で変更 ... ト値は '' です。 バージョン 3.5 で変更: __eq__() は key 及び value を考慮するようになりました。 Morsel. va ... 当てには代わりに set() を使用してください。 Morsel. key ¶ cookieの名前。 バージョン 3.5 で非推奨: key の割 ... は代わりに set() を使用してください。 Morsel. set ( key , value , coded_value ) ¶ 属性 key 、 value 、 cod ...
https://man.plustar.jp/python/library/http.cookies.html - [similar]
12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 6873
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 、両方をサポートする必要があります) 任意で、連続する key-value ペアを yield する (シーケンスでなく) イテレー ... ター。これらの要素は obj[key] = value を使用して、オブジェクトに格納されます。こ ... atabase. MemoRecord = namedtuple ( "MemoRecord" , "key, task" ) class DBPickler ( pickle . Pickler ): def ... ent ID is simply a tuple, containing a tag and a # key, which refers to a specific record in the database ...
https://man.plustar.jp/python/library/pickle.html - [similar]
オブジェクトプロトコル (object protocol) — Python 3.6.5 ドキュメント 6755
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... bject * PyObject_GetItem ( PyObject *o , PyObject *key ) ¶ Return value: New reference. オブジェクト key ... 返します。失敗すると NULL を返します。Python の式 o[key] と同じです。 int PyObject_SetItem ( PyObject *o , ... PyObject *key , PyObject *v ) ¶ オブジェクト key を値 v に対応付 ... を返します; 成功すると 0 を返します。 Python の文 o[key] = v と同じです。 int PyObject_DelItem ( PyObject ...
https://man.plustar.jp/python/c-api/object.html - [similar]
27.7. tracemalloc --- メモリ割り当ての追跡 — Python 3.6.5 ドキュメント 6716
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... os import tracemalloc def display_top ( snapshot , key_type = 'lineno' , limit = 10 ): snapshot = snapsho ... nknown>" ), )) top_stats = snapshot . statistics ( key_type ) print ( "Top %s lines" % limit ) for index ... スを作ります。 compare_to ( old_snapshot: Snapshot , key_type: str , cumulative: bool=False ) ¶ Compute the ... sorted list of StatisticDiff instances grouped by key_type . See the Snapshot.statistics() method for ke ...
https://man.plustar.jp/python/library/tracemalloc.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT