Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 191 - 200 of about 230 for NAME (0.198 sec.)
26. 開発ツール — Python 3.6.5 ドキュメント 4344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... び出し 26.5.2.2. 属性の削除 26.5.2.3. Mock の名前と name 属性 26.5.2.4. 属性として設定されるモック 26.5.3. ...
https://man.plustar.jp/python/library/development.html - [similar]
5. 組み込み例外 — Python 3.6.5 ドキュメント 4344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... れます。 コンストラクタのキーワード専用引数を使って name および path 属性を設定できます。設定された場合、イ ... パスとを、それぞれ表します。 バージョン 3.3 で変更: name および path 属性が追加されました。 exception Modul ... クを出力できるように、例外が送出されます。 exception NameError ¶ ローカルまたはグローバルの名前が見つからなか ... ] ) ¶ exception OSError ( errno , strerror [ , filename [ , winerror [ , filename2 ] ] ] ) この例外はシステ ...
https://man.plustar.jp/python/library/exceptions.html - [similar]
15.2. hmac --- メッセージ認証のための鍵付きハッシュ化 — Python 3.6.5 ドキュメン... 4344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... のブロックのバイト数。 バージョン 3.4 で追加. HMAC. name ¶ このHMAC の正規名で、例えば hmac-md5 のように常に ...
https://man.plustar.jp/python/library/hmac.html - [similar]
21.28. ipaddress --- IPv4/IPv6 操作ライブラリ — Python 3.6.5 ドキュメント 4344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... yte で、 IPv6 では 16 byte。 reverse_pointer ¶ The name of the reverse DNS PTR record for the IP address, ... .0.0.0.0.0.0.8.b.d.0.1.0.0.2.ip6.arpa' This is the name that could be used for performing a PTR lookup, no ... t the resolved hostname itself. バージョン 3.5 で追加. is_multicast ¶ アド ...
https://man.plustar.jp/python/library/ipaddress.html - [similar]
19.2. json --- JSON エンコーダおよびデコーダ — Python 3.6.5 ドキュメント 4344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 1.2:3.4}' | python -m json.tool Expecting property name enclosed in double quotes: line 1 column 2 (char 1 ... 1.2:3.4}' | python -m json.tool Expecting property name enclosed in double quotes: line 1 column 2 (char 1 ...
https://man.plustar.jp/python/library/json.html - [similar]
26.2. pydoc --- ドキュメント生成とオンラインヘルプシステム — Python 3.6.5 ドキ... 4344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ュールレベルのコードはそのときに実行されます。 if __name__ == '__main__': ガードを使って、ファイルがスクリプ ...
https://man.plustar.jp/python/library/pydoc.html - [similar]
21.6. urllib.request --- URL を開くための拡張可能なライブラリ — Python 3.6.5 ド... 4344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リスト内での場所を変更できます。 urllib.request. pathname2url ( path ) ¶ ローカルシステムにおける記法で表され ... よってクオートされています。 urllib.request. url2pathname ( path ) ¶ URL の、パーセントエンコードされたパス部 ... SHandler ( debuglevel=0 , context=None , check_hostname=None ) ¶ HTTPS で URL を開きます。 context および ... check_hostname は http.client.HTTPSConnection のものと同じ意味です ...
https://man.plustar.jp/python/library/urllib.request.html - [similar]
31.1. zipimport --- Zip アーカイブからモジュールを import する — Python 3.6.5 ... 4344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 合、 ZipImportError を送出します。 find_module ( fullname [ , path ] ) ¶ fullname で指定されたモジュールを検 ... 索します。 fullname は完全に修飾された (ドット表記の) モジュール名でな ... コルとの互換性を保つためのものです。 get_code ( fullname ) ¶ fullname に指定したモジュールのコードオブジェク ... 合には ZipImportError を送出します。 get_data ( pathname ) ¶ pathname に関連付けられたデータを返します。該当 ...
https://man.plustar.jp/python/library/zipimport.html - [similar]
5. データ構造 — Python 3.6.5 ドキュメント 4344
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... の節の後半に出てきます)操作やインデックス (あるいは namedtuples の場合は属性)でアクセスすることが多いです。 ... をひと組みにすることができます。 >>> questions = [ 'name' , 'quest' , 'favorite color' ] >>> answers = [ 'l ... It is {1} .' . format ( q , a )) ... What is your name? It is lancelot. What is your quest? It is the hol ...
https://man.plustar.jp/python/tutorial/datastructures.html - [similar]
1. Distutilsの紹介 — Python 3.6.5 ドキュメント 4303
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... になります: from distutils.core import setup setup ( name = 'foo' , version = '1.0' , py_modules = [ 'foo' ] ...
https://man.plustar.jp/python/distutils/introduction.html - [similar]