Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 331 for OF (0.072 sec.)
15.1. hashlib --- セキュアハッシュおよびメッセージダイジェスト — Python 3.6.5 ... 6385
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... gests with length_in_bits//2 up to 128 or 256 bits of security. As such, their digest methods require a ... ithm. shake. digest ( length ) ¶ Return the digest of the data passed to the update() method so far. Thi ... s is a bytes object of size length which may contain bytes in the whole r ... nSSL 1.1.0 defaults to 32 MB). dklen is the length of the derived key. 利用可能性: OpenSSL 1.1+ バージョ ...
https://man.plustar.jp/python/library/hashlib.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 6303
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... CP protocol, which provides for continuous streams of data between the client and server. If bind_and_ac ... ¶ This uses datagrams, which are discrete packets of information that may arrive out of order or be los ... ncoming requests. Second, you must instantiate one of the server classes, passing it the server's addres ... all the handle_request() or serve_forever() method of the server object to process one or many requests. ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
Argparse チュートリアル — Python 3.6.5 ドキュメント 6111
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argp ... y by default). Sort entries alphabetically if none of -cftuvSUX nor --sort is specified. ... 上の4つの実 ... how this help message and exit $ python3 prog.py foo foo こんなことが起こりました: add_argument() メソッ ... add_argument ( "square" , help = "display a square of a given number" ) args = parser . parse_args () pr ... add_argument ( "square" , help = "display a square of a given number" , type = int ) args = parser . par ...
https://man.plustar.jp/python/howto/argparse.html - [similar]
9.7. statistics --- 数理統計関数 — Python 3.6.5 ドキュメント 6111
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ) データの算術平均。 harmonic_mean() Harmonic mean of data. median() データの中央値。 median_low() データ ... mean ( data ) ¶ Return the sample arithmetic mean of data which can be a sequence or iterator. 算術平均 ... harmonic_mean ( data ) ¶ Return the harmonic mean of data , a sequence or iterator of real-valued numbe ... mes called the subcontrary mean, is the reciprocal of the arithmetic mean() of the reciprocals of the da ...
https://man.plustar.jp/python/library/statistics.html - [similar]
29.9. traceback --- スタックトレースの表示または取得 — Python 3.6.5 ドキュメン... 6083
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 。 text ¶ 構文エラー用 - エラーが発生したテクスト。 offset ¶ 構文エラー用 - エラーが発生したテクストへのオ ... not have read their lines in yet, making the cost of creating the StackSummary cheaper (which may be va ... StackSummary object from a supplied old-style list of tuples. Each tuple should be a 4-tuple with filena ... line as the elements. format ( ) ¶ Returns a list of strings ready for printing. Each string in the res ...
https://man.plustar.jp/python/library/traceback.html - [similar]
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 6083
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... an integer from 0 to 9 or -1 controlling the level of compression; 1 (Z_BEST_SPEED) is fastest and produ ... on level -- an integer from 0 to 9 or -1 . A value of 1 (Z_BEST_SPEED) is fastest and produces the least ... compression, while a value of 9 (Z_BEST_COMPRESSION) is slowest and produces the ... is DEFLATED . The wbits argument controls the size of the history buffer (or the "window size") used whe ...
https://man.plustar.jp/python/library/zlib.html - [similar]
26.6. unittest.mock --- 入門 — Python 3.6.5 ドキュメント 6056
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ng a specification also enables a smarter matching of calls made to the mock, regardless of whether some ... also be useful for your tests. An alternative way of dealing with mocking dates, or other builtin class ... d that uses the yield statement to return a series of values when iterated over [1] . A generator method ... need to configure the object returned by the call to foo.iter() . >>> mock_foo = MagicMock () >>> mock_f ...
https://man.plustar.jp/python/library/unittest.mock-examples.html - [similar]
正規表現 HOWTO — Python 3.6.5 ドキュメント 5974
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » 正規 ... .DOTALL ) where it will match even a newline. . is often used where you want to match "any character". 繰 ... る。今回の現在位置の文字は 'b' なので成功。 The end of the RE has now been reached, and it has matched 'a ... will then progressively back up and retry the rest of the RE again and again. It will back up until it h ... , matches either once or zero times; you can think of it as marking something as being optional. For exa ...
https://man.plustar.jp/python/howto/regex.html - [similar]
24.1. turtle --- タートルグラフィックス — Python 3.6.5 ドキュメント 5946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nown as gon, grade, or gradian and equals 1/100-th of the right angle.) >>> turtle . degrees ( 400.0 ) > ... 1 >>> turtle . pensize ( 10 ) # from here on lines of width 10 are drawn turtle. pen ( pen=None , **pend ... the given shearfactor shear, which is the tangent of the shear angle. Do not change the turtle's headin ... g (direction of movement). If shear is not given: return the curre ...
https://man.plustar.jp/python/library/turtle.html - [similar]
21.20. uuid --- UUID objects according to RFC 4122 — Python 3.6.5 ドキュメント 5946
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ersion=None ) ¶ Create a UUID from either a string of 32 hexadecimal digits, a string of 16 bytes as the ... bytes argument, a string of 16 bytes in little-endian order as the bytes_le ar ... gument, a tuple of six integers (32-bit time_low , 16-bit time_mid , ... 128-bit integer as the int argument. When a string of hex digits is given, curly braces, hyphens, and a ...
https://man.plustar.jp/python/library/uuid.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT