Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 98 for key (0.111 sec.)
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 5932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 含まれているかの判定も出来ますし、標準の辞書メソッド keys() 及び組み込み関数 len() もサポートしています。空 ... ... further form processing here ... ここで、 form[key] で参照される各フィールドはそれ自体が FieldStorage ... データに同じ名前のフィールドが二つ以上あれば、 form[key] で得られるオブジェクトは FieldStorage や MiniFiel ... スタンスのリストになります。この場合、 form.getvalue(key) も同様に、文字列からなるリストを返します。もしこう ...
https://man.plustar.jp/python/library/cgi.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 5932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... fonts [フォント], indentation [字下げ/インデント], keybindings [キーバインド設定], text color themes [テキ ... hout deleting (usually you can also use the cursor key for this) C-f で一文字分文字削除なしで進む (通常、 ... the Python Shell window by one tab). After certain keywords (break, return etc.) the next line is dedente ... ometimes a restart initiated by a program crash or Keyboard Interrupt (control-C) may fail to connect. Di ...
https://man.plustar.jp/python/library/idle.html - [similar]
21.28. ipaddress --- IPv4/IPv6 操作ライブラリ — Python 3.6.5 ドキュメント 5932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ress objects are hashable , so they can be used as keys in dictionaries. class ipaddress. IPv4Address ( a ... work objects are hashable , so they can be used as keys in dictionaries. class ipaddress. IPv4Network ( a ... face objects are hashable , so they can be used as keys in dictionaries. class ipaddress. IPv4Interface ( ... Network('192.0.2.0/24')] ipaddress. get_mixed_type_key ( obj ) ¶ ネットワークとアドレスをソートするための ...
https://man.plustar.jp/python/library/ipaddress.html - [similar]
26.1. typing --- 型ヒントのサポート — Python 3.6.5 ドキュメント 5932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... g ( Generic [ KT , VT ]): def __getitem__ ( self , key : KT ) -> VT : ... # Etc. このクラスは次のように使 ... ' ) def lookup_name ( mapping : Mapping [ X , Y ], key : X , default : Y ) -> Y : try : return mapping [ ... key ] except KeyError : return default class typing. Type ( Generic ... c.MappingView のジェネリック版です。 class typing. KeysView ( MappingView[KT_co], AbstractSet[KT_co] ) ¶ ...
https://man.plustar.jp/python/library/typing.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 5932
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 値を参照するようになりました。 Request. add_header ( key , val ) ¶ リクエストに新たなヘッダーを追加します。 ... 。同じ名前を持つヘッダを 2 つ以上持つことはできず、 key の衝突が生じた場合、後で追加したヘッダーが前に 追加 ... があるからです。 Request. add_unredirected_header ( key , header ) ¶ リダイレクトされたリクエストには追加さ ... イアント認証に使われることがあります。キーワード引数 key_file および cert_file が SSL 鍵と証明書を設定するた ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 5893
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... http.client. HTTPSConnection ( host , port=None , key_file=None , cert_file=None , [ timeout , ] source_ ... () を渡すことで出来ます。 バージョン 3.6 で非推奨: key_file and cert_file are deprecated in favor of cont ...
https://man.plustar.jp/python/library/http.client.html - [similar]
21.22. http.server --- HTTP サーバ — Python 3.6.5 ドキュメント 5893
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . The shortmessage is usually used as the message key in an error response, and longmessage as the expla ... in key. It is used by send_response_only() and send_error ... ers() needs to be called explicitly. send_header ( keyword , value ) ¶ Adds the HTTP header to an interna ... ither end_headers() or flush_headers() is invoked. keyword should specify the header keyword, with value ...
https://man.plustar.jp/python/library/http.server.html - [similar]
12.6. sqlite3 --- SQLite データベースに対する DB-API 2.0 インタフェース — Pytho... 5893
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のは宣言の最初の単語です。すなわち、"integer primary key" においては "integer" が読み取られます。また、 "nu ... カラムと値を持っていた場合、それらは同値になります。 keys ( ) ¶ このメソッドはカラム名のリストを返します。ク ... 35.14) >>> len ( r ) 5 >>> r [ 2 ] 'RHAT' >>> r . keys () ['date', 'trans', 'symbol', 'qty', 'price'] >> ... egrity of the database is affected, e.g. a foreign key check fails. It is a subclass of DatabaseError . e ...
https://man.plustar.jp/python/library/sqlite3.html - [similar]
What's New in Python 2.1 — Python 3.6.5 ドキュメント 5893
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ます: _cache = {} def memoize ( x ): if _cache . has_key ( x ): return _cache [ x ] retval = f ( x ) # Cach ... ます: _cache = {} def memoize ( x ): if _cache . has_key ( x ): obj = _cache [ x ]() # If weak reference ob ... ないからです。 D.popitem() は辞書 D からランダムに (key, value) ペアを削除して、その 2 要素タプルを返します ...
https://man.plustar.jp/python/whatsnew/2.1.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 5893
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ている API はもはやリストを返しません: dict の dict.keys() , dict.items() そして dict.values() メソッドはリ ... ストの代わりに "views" を返します。 例えば: k = d.keys(); k.sort() は上手く動きません。 代わりに k = sor ... これは Python 2.5 でも動作し、効率的です)。 dict.iterkeys() 、 dict.iteritems() 、 dict.itervalues() メソッ ... を与える cmp 引数を受け取らなくなりました。 かわりに key 引数を使用してください。 key と reverse 引数は "キ ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT