Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 52 for we (0.045 sec.)
14.2. configparser --- 設定ファイルのパーサー — Python 3.6.5 ドキュメント 7407
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... : [Simple Values] key = value spaces in keys = allowed spaces in values = allowed as well spaces around ... mized. [Sections Can Be Indented] can_values_be_as_well = True does_that_mean_anything_special = False p ... per than the first line of a value # Did I mention we can indent comments, too? 14.2.5. 値の補間 ¶ コア機 ... l-locking ... old_passwords = 1 ... skip-bdb ... # we don't need ACID today ... skip-innodb ... """ >>> ...
https://man.plustar.jp/python/library/configparser.html - [similar]
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 7407
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... -bit platforms and produces digests of any size between 1 and 64 bytes, BLAKE2s , optimized for 8- to 32 ... -bit platforms and produces digests of any size between 1 and 32 bytes. BLAKE2 supports keyed mode (a fa ... lengths for salt and personalization parameters, however, for convenience, this implementation accepts b ... with BLAKE2b without changing the size of output, we can tell BLAKE2b to produce 20-byte digests: >>> f ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
What's New in Python 2.3 — Python 3.6.5 ドキュメント 7407
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... on' : "0.5.1" , 'description' : "A highly Pythonic Web application framework" , # ... } if ( hasattr ( c ... Dave Cole, Andrew McNamara, Skip Montanaro, Cliff Wells. PEP 307: Pickle の機能拡張 ¶ pickle , cPickle ... 点数を整数に収める際、それがとても大き場合に OverflowError を投げるのではなく長整数を返すようになっていま ... ket.socket'> One of the noted incompatibilities between old- and new-style classes has been removed: you ...
https://man.plustar.jp/python/whatsnew/2.3.html - [similar]
21.4. wsgiref --- WSGI ユーティリティとリファレンス実装 — Python 3.6.5 ドキュメ... 7318
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... sgiref --- WSGI ユーティリティとリファレンス実装 ¶ Web Server Gateway Interface (WSGI) は、Web サーバソフ ... トウェアと Python で記述された Web アプリケーションとの標準インターフェースです。標準 ... SGI をサポートするアプリケーションを幾つもの異なる Web サーバで使うことが容易になります。 Web サーバとプ ... 。 wsgiref は WSGI 仕様のリファレンス実装で、これは Web サーバやフレームワークに WSGI サポートを加えるのに ...
https://man.plustar.jp/python/library/wsgiref.html - [similar]
4. その他の制御フローツール — Python 3.6.5 ドキュメント 7318
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... a + b ... print () ... >>> # Now call the function we just defined: ... fib ( 2000 ) 0 1 1 2 3 5 8 13 21 ... , state = 'a stiff' , action = 'voom' , type = 'Norwegian Blue' ): print ( "-- This parrot wouldn't" , a ... ou have any" , kind , "?" ) print ( "-- I'm sorry, we're all out of" , kind ) for arg in arguments : pri ... れます: -- Do you have any Limburger ? -- I'm sorry, we're all out of Limburger It's very runny, sir. It's ...
https://man.plustar.jp/python/tutorial/controlflow.html - [similar]
19.1.1. email.message: 電子メールメッセージの表現 — Python 3.6.5 ドキュメント 7213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... . Note that there are some semantic differences between these methods and a normal mapping (i.e. diction ... appeared in the original message, or in which they were added to the message later. Any header deleted a ... for consistency's sake, but do not depend on it as we may choose to make such assignments do an automati ... ¶ Return the message's content type, coerced to lower case of the form maintype/subtype . If there is n ...
https://man.plustar.jp/python/library/email.message.html - [similar]
21.12. http.client --- HTTP プロトコルクライアント — Python 3.6.5 ドキュメント 7213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... a HTTPS proxy server running locally on port 8080, we would pass the address of the proxy to the HTTPSCo ... tion constructor, and the address of the host that we eventually want to reach to the set_tunnel() metho ...
https://man.plustar.jp/python/library/http.client.html - [similar]
36.2. imp --- import 内部へのアクセス — Python 3.6.5 ドキュメント 7213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ing calls raises an exception, # there's a problem we can't handle -- let the caller handle it. fp , pat ... , fp , pathname , description ) finally : # Since we may exit via an exception, close fp explicitly. if ...
https://man.plustar.jp/python/library/imp.html - [similar]
12.1. pickle --- Python オブジェクトの直列化 — Python 3.6.5 ドキュメント 7213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ject. __getnewargs_ex__ ( ) ¶ In protocols 2 and newer, classes that implements the __getnewargs_ex__() ... f pickling MemoRecord as a regular class instance, we emit a # persistent ID. if isinstance ( obj , Memo ... tore the previously opened file's state. To do so, we need to # reopen it and read from it until the lin ... rotocol version used is detected automatically, so we do not # have to specify it. data = pickle . load ...
https://man.plustar.jp/python/library/pickle.html - [similar]
7. 入力と出力 — Python 3.6.5 ドキュメント 7213
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ドの基本的な使い方は次のようなものです: >>> print ( 'We are the {} who say " {} !"' . format ( 'knights' , ... 'Ni' )) We are the knights who say "Ni!" 括弧とその中の文字(こ ... ナリーモード) のいずれかです: >>> value = ( 'the answer' , 42 ) >>> s = str ( value ) # convert the tuple ...
https://man.plustar.jp/python/tutorial/inputoutput.html - [similar]
PREV 1 2 3 4 5 6 NEXT