Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 128 for FORMAT (0.049 sec.)
文字列の変換と書式化 — Python 3.6.5 ドキュメント 7960
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... S_snprintf ( char *str , size_t size , const char *format , ... ) ¶ 書式文字列 format と追加の引数から、 siz ... _vsnprintf ( char *str , size_t size , const char *format , va_list va ) ¶ 書式文字列 format と可変長引数リス ... イト以上を書き込みません。 str != NULL , size > 0 , format != NULL を要求します。 もし vsnprintf() のないプラ ... 加. char* PyOS_double_to_string ( double val , char format_code , int precision , int flags , int *ptype ) ¶ ...
https://man.plustar.jp/python/c-api/conversion.html - [similar]
2. 組み込み関数 — Python 3.6.5 ドキュメント 7606
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... bytes() float() iter() print() tuple() callable() format() len() property() type() chr() frozenset() list() ... しくない場合には、次の方法のどちらでも使えます。 >>> format ( 14 , '#b' ), format ( 14 , 'b' ) ('0b1110', '111 ... ' { 14 : b } ' ('0b1110', '1110') より詳しいことは format() も参照してください。 class bool ( [ x ] ) ¶ ブー ... 桁をグループ化するのにアンダースコアを利用できます。 format ( value [ , format_spec ] ) ¶ value を format_spec ...
https://man.plustar.jp/python/library/functions.html - [similar]
バッファプロトコル (buffer Protocol) — Python 3.6.5 ドキュメント 7435
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... e() (またはその同族のひとつ) を y* 、 w* または s* format codes のいずれかとともに呼び出す。 どちらのケースで ... 分のbyte単位のサイズ。 struct.calcsize() を非NULLの format 値に対して呼び出した結果と同じです。 重要な例外: 消 ... 費者が PyBUF_FORMAT フラグを設定することなくバッファを要求した場合、 f ... ize == 1 と見なさなければなりません。 const char * format ¶ 要素一つ分の内容を指定する、 struct モジュールス ...
https://man.plustar.jp/python/c-api/buffer.html - [similar]
16.7. logging.config --- ロギングの環境設定 — Python 3.6.5 ドキュメント 7313
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... able existing loggers, you will need to use a JSON format for the configuration, which will use dictConfig() ... するべきものを決定するのにコンテキストが使われます。 formatters - 対応する値は辞書で、そのそれぞれのキーがフォ ... ーマッタ id になり、それぞれの値が対応する Formatter インスタンスをどのように環境設定するかを記述する ... す。 環境設定辞書から、 (デフォルトが None の) キー format と datefmt を検索し、それらが Formatter インスタン ...
https://man.plustar.jp/python/library/logging.config.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 7142
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... 9. aifc Read and write audio files in AIFF or AIFC format. argparse Command-line option and argument parsing ... tations. binhex Encode and decode files in binhex4 format. bisect Array bisection algorithms for binary sear ... e types. dbm Interfaces to various Unix "database" formats. dbm.dumb Portable implementation of the simple D ... tils.sysconfig Low-level access to configuration information of the Python interpreter. distutils.text_file ...
https://man.plustar.jp/python/py-modindex.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 7081
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... n be accessed as a dictionary: print ( 'To: {} ' . format ( headers [ 'to' ])) print ( 'From: {} ' . format ... ( headers [ 'from' ])) print ( 'Subject: {} ' . format ( headers [ 'subject' ])) # You can also access th ... the addresses: print ( 'Recipient username: {} ' . format ( headers [ 'to' ] . addresses [ 0 ] . username )) ... print ( 'Sender name: {} ' . format ( headers [ 'from' ] . addresses [ 0 ] . display_n ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 7081
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nded for use when messages are stored in unix mbox format (see mailbox and WHY THE CONTENT-LENGTH FORMAT IS ... envelope header delimiter used by the Unix mailbox format (see mailbox ) before the first of the RFC 5322 he ... in any message it flattens to an ASCII compatible format, by converting them to an ASCII compatible Content ... nded for use when messages are stored in unix mbox format (see mailbox and WHY THE CONTENT-LENGTH FORMAT IS ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
21.21. socketserver --- ネットワークサーバのフレームワーク — Python 3.6.5 ドキ... 7020
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... is uses datagrams, which are discrete packets of information that may arrive out of order or be lost while i ... The address on which the server is listening. The format of addresses varies depending on the protocol fami ... . recv ( 1024 ) . strip () print ( " {} wrote:" . format ( self . client_address [ 0 ])) print ( self . dat ... le . readline () . strip () print ( " {} wrote:" . format ( self . client_address [ 0 ])) print ( self . dat ...
https://man.plustar.jp/python/library/socketserver.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 6971
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... を補う、より強力な文字列フォーマッティングメソッドの format() が作られました。これをサポートする str.format() ... 2.6 では 8 ビット文字列と Unicode 文字列の両方が .format() メソッドを持ち、文字列をテンプレートとみなして、 ... argument 0 into the string. >>> "User ID: {0} " . format ( "root" ) 'User ID: root' >>> # Use the named key ... ts >>> "User ID: {uid} Last seen: {last_login} " . format ( ... uid = "root" , ... last_login = "5 Mar 2008 ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
11.10. shutil --- 高水準のファイル操作 — Python 3.6.5 ドキュメント 6727
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 依拠しています。 shutil. make_archive ( base_name , format [ , root_dir [ , base_dir [ , verbose [ , dry_run ... スを含み、フォーマットごとの拡張子を抜いた名前です。 format はアーカイブフォーマットで "zip" ( zlib モジュール ... 引数は使用されず、非推奨です。 shutil. get_archive_formats ( ) ¶ アーカイブ化をサポートしているフォーマットの ... zma モジュールが利用可能な場合)。 register_archive_format() を使って、新しいフォーマットを登録したり、既存の ...
https://man.plustar.jp/python/library/shutil.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT