Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 14 for FMT (0.027 sec.)
14.5. plistlib --- Mac OS X .plist ファイルの生成と解析 — Python 3.6.5 ドキュメ... 13741
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 下の関数を定義しています: plistlib. load ( fp , * , fmt=None , use_builtin_types=True , dict_type=dict ) ¶ ... れたルートオブジェクト (通常は辞書です) を返します。 fmt はファイルの形式で、次の値が有効です。 None : ファ ... イル形式を自動検出します FMT_XML : XML ファイル形式です FMT_BINARY : バイナリの ... 、plist ファイルでキーの順序は重要ではありません)。 FMT_XML 形式の XML データは xml.parsers.expat にある E ...
https://man.plustar.jp/python/library/plistlib.html - [similar]
7.1. struct --- バイト列をパックされたバイナリデータとして解釈する — Python 3.6... 11028
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 何が問題なのかを記述する文字列です。 struct. pack ( fmt , v1 , v2 , ... ) ¶ フォーマット文字列 fmt に従い値 ... に一致していなければなりません。 struct. pack_into ( fmt , buffer , offset , v1 , v2 , ... ) ¶ フォーマット ... 文字列 fmt に従い値 v1 , v2 , ... をパックしてバイト列にし、書 ... ます。オフセットは省略出来ません。 struct. unpack ( fmt , buffer ) ¶ ( pack(fmt, ...) でパックされたであろ ...
https://man.plustar.jp/python/library/struct.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 9750
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... )s %(name)-12s %(levelname)-8s %(message)s ' , datefmt = '%m- %d %H:%M' , filename = '/temp/myapp.log' , ... ください: class BraceMessage : def __init__ ( self , fmt , * args , ** kwargs ): self . fmt = fmt self . ar ... wargs = kwargs def __str__ ( self ): return self . fmt . format ( * self . args , ** self . kwargs ) clas ... s DollarMessage : def __init__ ( self , fmt , ** kwargs ): self . fmt = fmt self . kwargs = kw ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
19.1.3. email.generator: MIME 文書の生成 — Python 3.6.5 ドキュメント 9750
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ( outfp , mangle_from_=None , maxheaderlen=None , fmt=None , * , policy=None ) ¶ Act like Generator , ex ... t text , instead of printing it fill in the string fmt using information from the part and print the resu ... lting filled-in string. To fill in fmt , execute fmt % part_info , where part_info is a d ... 非 text 型 subpart の Content-transfer-encoding If fmt is None , use the following default fmt : "[Non-te ...
https://man.plustar.jp/python/library/email.generator.html - [similar]
23.2. locale --- 国際化サービス — Python 3.6.5 ドキュメント 8945
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... コーディングの名前を文字列で取得します。 locale. D_T_FMT ¶ 日付と時刻をロケール特有の方法で表現するために、 ... して用いることのできる文字列を取得します。 locale. D_FMT ¶ 日付をロケール特有の方法で表現するために、 time. ... して用いることのできる文字列を取得します。 locale. T_FMT ¶ 時刻をロケール特有の方法で表現するために、 time. ... して用いることのできる文字列を取得します。 locale. T_FMT_AMPM ¶ 時刻を午前/午後の書式で表現するために、 tim ...
https://man.plustar.jp/python/library/locale.html - [similar]
22.9. ossaudiodev --- OSS互換オーディオデバイスへのアクセス — Python 3.6.5 ドキ... 8297
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... つのメソッドを正しい順序で呼び出さねばなりません: setfmt() で出力形式を設定し channels() でチャンネル数を設 ... に対応しています。対応関係は明らかです: 例えば、 setfmt() は ioctl の SNDCTL_DSP_SETFMT に対応し、 sync() ... 、ブロックモードは戻せません。 oss_audio_device. getfmts ( ) ¶ サウンドカードがサポートしているオーディオ出 ... されているフォーマットの一部です: フォーマット 説明 AFMT_MU_LAW 対数符号化 (Sun の .au 形式や /dev/audio で ...
https://man.plustar.jp/python/library/ossaudiodev.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 7859
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... # Field 1: right justify, pad to 6 characters >>> fmt = ' {0:15} $ {1:>6} ' >>> fmt . format ( 'Registra ... tion' , 35 ) 'Registration $ 35' >>> fmt . format ( 'Tutorial' , 50 ) 'Tutorial $ 50' >>> f ... として、ネストによる他フィールド参照が使えます: >>> fmt = '{0: {1} }' >>> width = 15 >>> fmt . format ( 'I ... 234' , width ) 'Invoice #1234 ' >>> width = 35 >>> fmt . format ( 'Invoice #1234' , width ) 'Invoice #123 ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 7754
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... tted literal strings (f-strings). Pops an optional fmt_spec from the stack, then a required value . flags ... before formatting it. (flags & 0x04) == 0x04 : pop fmt_spec from the stack and use it, else use an empty ...
https://man.plustar.jp/python/library/dis.html - [similar]
16.6. logging --- Python 用ロギング機能 — Python 3.6.5 ドキュメント 7754
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... he integer constants such as INFO . setFormatter ( fmt ) ¶ Sets the Formatter for this handler to fmt . a ... 属性 の節で与えられます。 class logging. Formatter ( fmt=None , datefmt=None , style='%' ) ¶ Returns a new ... ring for the date/time portion of a message. If no fmt is specified, '%(message)s' is used. If no datefmt ... 外情報の後に追加されます。 formatTime ( record , datefmt=None ) ¶ This method should be called from format( ...
https://man.plustar.jp/python/library/logging.html - [similar]
18.1. socket --- 低水準ネットワークインターフェイス — Python 3.6.5 ドキュメント 7667
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... see 'struct can_frame' in <linux/can.h>) can_frame_fmt = "=IB3x8s" can_frame_size = struct . calcsize ( c ... an_frame_fmt ) def build_can_frame ( can_id , data ): can_dlc = ... 8 , b ' \x00 ' ) return struct . pack ( can_frame_fmt , can_id , can_dlc , data ) def dissect_can_frame ... _id , can_dlc , data = struct . unpack ( can_frame_fmt , frame ) return ( can_id , can_dlc , data [: can_ ...
https://man.plustar.jp/python/library/socket.html - [similar]
PREV 1 2 NEXT