Python 3.6.5 ドキュメント 検索
Results of 1 - 10 of about 98 for KEY (0.020 sec.)
- 34.3. winreg --- Windows レジストリへのアクセス — Python 3.6.5 ドキュメント 12584
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
のモジュールでは以下の関数を提供します: winreg. CloseKey ( hkey ) ¶ 以前開かれたレジストリキーを閉じます。...
hkey 引数は以前開かれたレジストリキーを指定します。 注釈...
このメソッドを使って (または hkey.Close() によって) hkey が閉じられなかった場合、Pyt...
hon が hkey オブジェクトを破壊する際に閉じられます。 winreg. C...
- https://man.plustar.jp/python/library/winreg.html - [similar]
- 16.10. curses --- 文字セル表示を扱うための端末操作 — Python 3.6.5 ドキュメント 11799
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ます。 curses. getmouse ( ) ¶ After getch() returns KEY_MOUSE to signal a mouse event, this method should...
歴史的な理由のためだけに存在しています。 curses. has_key ( ch ) ¶ キー値 ch をとり、現在の端末タイプがその値...
されてしまっている) 場合に True を返します。 curses. keyname ( k ) ¶ Return the name of the key numbered k...
as a bytes object. The name of a key generating printable ASCII character is the key's...
- https://man.plustar.jp/python/library/curses.html - [similar]
- マップ型プロトコル (mapping protocol) — Python 3.6.5 ドキュメント 11055
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
ing_Length ( PyObject *o ) ¶ Returns the number of keys in object o on success, and -1 on failure. For ob...
yMapping_DelItemString ( PyObject *o , const char *key ) ¶ Remove the mapping for object key from the obj...
. This is equivalent to the Python statement del o[key] . int PyMapping_DelItem ( PyObject *o , PyObject...
*key ) ¶ Remove the mapping for object key from the obj...
- https://man.plustar.jp/python/c-api/mapping.html - [similar]
- 辞書オブジェクト (dictionary object) — Python 3.6.5 ドキュメント 10937
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
ます。 int PyDict_Contains ( PyObject *p , PyObject *key ) ¶ 辞書 p に key が入っているか判定します。 p の要...
素が key に一致した場合は 1 を返し、それ以外の場合には 0 を...
。エラーの場合 -1 を返します。この関数は Python の式 key in p と等価です。 PyObject * PyDict_Copy ( PyObjec...
ます。 int PyDict_SetItem ( PyObject *p , PyObject *key , PyObject *val ) ¶ 辞書 p に、 key をキーとして値...
- https://man.plustar.jp/python/c-api/dict.html - [similar]
- ソート HOW TO — Python 3.6.5 ドキュメント 10702
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソー
...
' , 3 : 'B' , 4 : 'E' , 5 : 'A' }) [1, 2, 3, 4, 5] Key 関数 ¶ list.sort() と sorted() には key パラメータ...
( "This is a test string from Andrew" . split (), key = str . lower ) ['a', 'Andrew', 'from', 'is', 'str...
ing', 'test', 'This'] key パラメータは単一の引数をとり、ソートに利用される k...
, 'B' , 10 ), ... ] >>> sorted ( student_tuples , key = lambda student : student [ 2 ]) # sort by age [(...
- https://man.plustar.jp/python/howto/sorting.html - [similar]
- 19.4. mailbox --- 様々な形式のメールボックス操作 — Python 3.6.5 ドキュメント 8964
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
はそのキーに対応するメッセージが削除されているならば KeyError を受け取ることになります。 警告 十分な注意を、...
バイナリ入力のサポートが追加されました。 remove ( key ) ¶ __delitem__ ( key ) ¶ discard ( key ) ¶ メール...
ボックスから key に対応するメッセージを削除します。 対応するメッセー...
() または __delitem__() として呼び出されている時は KeyError 例外が送出されます。しかし、 discard() として...
- https://man.plustar.jp/python/library/mailbox.html - [similar]
- 15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 8729
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
ults to 32 MB). dklen is the length of the derived key. 利用可能性: OpenSSL 1.1+ バージョン 3.6 で追加. 1...
f any size between 1 and 32 bytes. BLAKE2 supports keyed mode (a faster and simpler replacement for HMAC...
ns: hashlib. blake2b ( data=b'' , digest_size=64 , key=b'' , salt=b'' , person=b'' , fanout=1 , depth=1 ,...
) ¶ hashlib. blake2s ( data=b'' , digest_size=32 , key=b'' , salt=b'' , person=b'' , fanout=1 , depth=1 ,...
- https://man.plustar.jp/python/library/hashlib.html - [similar]
- 8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 8180
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
n -- like Python's nonlocals d [ 'x' ] # Get first key in the chain of contexts d [ 'x' ] = 1 # Set value...
updates to inner scopes' def __setitem__ ( self , key , value ): for mapping in self . maps : if key in...
mapping : mapping [ key ] = value return self . maps [ 0 ][ key ] = value...
def __delitem__ ( self , key ): for mapping in self . maps : if key in mapping...
- https://man.plustar.jp/python/library/collections.html - [similar]
- 12.3. shelve --- Python オブジェクトの永続化 — Python 3.6.5 ドキュメント 7827
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ
...
. Shelf ( dict , protocol=None , writeback=False , keyencoding='utf-8' ) ¶ collections.abc.MutableMapping...
と同期して閉じる際に長い時間がかかるようになります。 keyencoding パラメータは、shelf の背後にある dict に対...
際に、自動的に閉じられます。 バージョン 3.2 で変更: keyencoding パラメータを追加; 以前はキーは常に UTF-8 で...
DbShelf ( dict , protocol=None , writeback=False , keyencoding='utf-8' ) ¶ Shelf のサブクラスで、 first()...
- https://man.plustar.jp/python/library/shelve.html - [similar]
- Set オブジェクト — Python 3.6.5 ドキュメント 7749
- ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ
...
int PySet_Contains ( PyObject *anyset , PyObject *key ) ¶ 見つかったら 1 を、見つからなかったら 0 を、エ...
シュ set を一時的な frozenset に自動で変換しません。 key がハッシュ可能で無い場合、 TypeError を送出します。...
出します。 int PySet_Add ( PyObject *set , PyObject *key ) ¶ set のインスタンスに key を追加します。 frozen...
ます)。 成功したら 0 を、失敗したら -1 を返します。 key がハッシュ可能でない場合は、 TypeError を送出します...
- https://man.plustar.jp/python/c-api/set.html - [similar]