Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 128 for FORMAT (0.084 sec.)
15. 浮動小数点演算、その問題と制限 — Python 3.6.5 ドキュメント 6202
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 効桁数を制限した10進数表現を得ることができます: >>> format ( math . pi , '.12g' ) # give 12 significant digit ... s '3.14159265359' >>> format ( math . pi , '.2f' ) # give 2 digits after the po ... な制御をしたければ、 書式指定文字列の文法 にある str.format() メソッドのフォーマット仕様を参照してください。 正 ... するのではなく、結果を有効数字 17 桁に丸めます: >>> format ( 0.1 , '.17f' ) '0.10000000000000001' fractions モ ...
https://man.plustar.jp/python/tutorial/floatingpoint.html - [similar]
Logging HOWTO — Python 3.6.5 ドキュメント 6153
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... れは後方互換性のためです。logging パッケージは、 str.format() や string.Template のような新しいフォーマットオプ ... 要があります: import logging logging . basicConfig ( format = ' %(levelname)s : %(message)s ' , level = loggin ... いてください: import logging logging . basicConfig ( format = ' %(asctime)s %(message)s ' ) logging . warning ... :42,612 is when this event was logged. The default format for date/time display (shown above) is ISO8601. If ...
https://man.plustar.jp/python/howto/logging.html - [similar]
22.5. chunk --- IFFチャンクデータの読み込み — Python 3.6.5 ドキュメント 6153
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... このフォーマットは少なくとも、Audio Interchange File Format (AIFF/AIFF-C) とReal Media File Format (RMFF)で使わ ... ます。 脚注 [1] "EA IFF 85" Standard for Interchange Format Files, Jerry Morrison, Electronic Arts, January 19 ...
https://man.plustar.jp/python/library/chunk.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 6153
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... y. DateHeader ¶ RFC 5322 specifies a very specific format for dates within email headers. The DateHeader par ... ser recognizes that date format, as well as recognizing a number of variant forms ... s -0000 (indicating it is in UTC but contains no information about the source timezone), then datetime will ... . The decoded value of the header is determined by formatting the datetime according to the RFC 5322 rules; ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
18.5.4. Transports and protocols (callback based API) — Python 3.6.5 ドキュメン... 6092
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... message . encode ()) print ( 'Data sent: {!r} ' . format ( self . message )) def data_received ( self , dat ... a ): print ( 'Data received: {!r} ' . format ( data . decode ())) def connection_lost ( self , ... nfo ( 'peername' ) print ( 'Connection from {} ' . format ( peername )) self . transport = transport def dat ... data . decode () print ( 'Data received: {!r} ' . format ( message )) print ( 'Send: {!r} ' . format ( mess ...
https://man.plustar.jp/python/library/asyncio-protocol.html - [similar]
13.1. zlib --- gzip 互換の圧縮 — Python 3.6.5 ドキュメント 6031
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ompressed data. The wbits parameter depends on the format of data , and is discussed further below. If bufsi ... er (or "window size"), and what header and trailer format is expected. It is similar to the parameter for co ... and automatically accepts either the zlib or gzip format. When decompressing a stream, the window size must ... or the "window size"), and what header and trailer format is expected. It has the same meaning as described ...
https://man.plustar.jp/python/library/zlib.html - [similar]
6.3. difflib --- 差分の計算を助ける — Python 3.6.5 ドキュメント 5970
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... a[ {} : {} ] --> b[ {} : {} ] {!r:>8} --> {!r} ' . format ( ... tag , i1 , i2 , j1 , j2 , a [ i1 : i2 ], b [ ... ne interface to difflib.py providing diffs in four formats: * ndiff: lists every line and highlights interli ... : highlights clusters of changes in a before/after format. * unified: highlights clusters of changes in an i ... nline format. * html: generates side by side comparison with ch ...
https://man.plustar.jp/python/library/difflib.html - [similar]
Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... オブジェクトを生成します。 PyObject * PyUnicode_FromFormat ( const char *format , ... ) ¶ printf() スタイルの ... format 文字列と可変長引数を受け取り、結果の unicode 文字の ... ェクトを返します。可変長引数は C の型を持っていて、 format ASCII エンコード文字列で指定された書式指定文字に完 ... サポートが追加されました。 PyObject * PyUnicode_FromFormatV ( const char *format , va_list vargs ) ¶ ちょうど ...
https://man.plustar.jp/python/c-api/unicode.html - [similar]
21.3. cgitb --- CGI スクリプトのトレースバック管理機構 — Python 3.6.5 ドキュメ... 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tb. enable ( display=1 , logdir=None , context=5 , format="html" ) ¶ この関数は、 sys.excepthook を設定するこ ... 示するかです; この値は標準で 5 です。オプション引数 format が "html" の場合、出力は HTML に書式化されます。そ ...
https://man.plustar.jp/python/library/cgitb.html - [similar]
33.1. formatter --- 汎用の出力書式化機構 — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... リ » 33. 各種サービス » 33.1. formatter --- 汎用の出力書式化機構 ¶ バージョン 3.4 で非推 ... 奨: 使用法がないため formatter モジュールは非推奨になりました。 このモジュール ... 各インタフェースについて複数の実装を提供しています。 formatter インタフェースと、formatter インタフェースに必要 ... なされる writer インタフェースです。 formatter オブジェクトはある抽象化された書式イベントの流れ ...
https://man.plustar.jp/python/library/formatter.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT