Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 59 for decode (0.073 sec.)
19.2. json --- JSON エンコーダおよびデコーダ — Python 3.6.5 ドキュメント 6754
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... constant は呼びされません。 カスタマイズされた JSONDecoder のサブクラスを使うには、 cls キーワード引数に指定 ... します; 指定しなかった場合は JSONDecoder が使われます。追加のキーワード引数はこのクラスのコ ... いるデータが不正な JSON ドキュメントだった場合、 JSONDecodeError が送出されます。 バージョン 3.6 で変更: すべて ... いるデータが不正な JSON ドキュメントだった場合、 JSONDecodeError が送出されます。 バージョン 3.6 で変更: s には ...
https://man.plustar.jp/python/library/json.html - [similar]
8.7. array --- 効率のよい数値アレイ — Python 3.6.5 ドキュメント 6623
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... レイから Unicode 文字列を得るには、 array.tobytes().decode(enc) を使ってください。 アレイオブジェクトを表示し ...
https://man.plustar.jp/python/library/array.html - [similar]
19.1.8. email: 使用例 — Python 3.6.5 ドキュメント 6623
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... , 'wb' ) as fp : fp . write ( part . get_payload ( decode = True )) if __name__ == '__main__' : main () Here ...
https://man.plustar.jp/python/library/email.examples.html - [similar]
19.1.6. email.headerregistry: カスタムヘッダーオブジェクト — Python 3.6.5 ドキ... 6623
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ring value of any header object is the value fully decoded to unicode. 基底クラスは以下の読み出し専用属性を定 ... ctionary must contain values for at least the keys decoded and defects . decoded should be the string value ... for the header (that is, the header value fully decoded to unicode). The parse method should assume that ... red text. The parser uses heuristics to attempt to decode certain non-compliant encoded words. Defects are r ...
https://man.plustar.jp/python/library/email.headerregistry.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 6623
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... である場合は、 str(bytes, encoding, errors) は bytes.decode(encoding, errors) と等価です。そうでない場合は、 b ... ytes.decode() が呼ばれる前に buffer オブジェクトの下層にある b ... の範囲の整数も受け取れるようになりました。 bytes. decode ( encoding="utf-8" , errors="strict" ) ¶ bytearray ... . decode ( encoding="utf-8" , errors="strict" ) ¶ 与えられた ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
21.19. telnetlib --- Telnet クライアント — Python 3.6.5 ドキュメント 6623
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... write ( b "exit \n " ) print ( tn . read_all () . decode ( 'ascii' )) 関連キーワード: データ , 接続 , read ...
https://man.plustar.jp/python/library/telnetlib.html - [similar]
What's New in Python 2.0 — Python 3.6.5 ドキュメント 6623
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ょう。これは 4 要素のタプルを返します: (encode_func, decode_func, stream_reader, stream_writer) 。 encode_func ... は何文字の Unicode 文字列が変換されたかを伝えます。 decode_func は encode_func の対となる関数で、8 ビット文字 ... tr = u ' \u0660\u2000 ab ...' ( UTF8_encode , UTF8_decode , UTF8_streamreader , UTF8_streamwriter ) = codecs ...
https://man.plustar.jp/python/whatsnew/2.0.html - [similar]
1. 他のアプリケーションへの Python の埋め込み — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... nt argc , char * argv []) { wchar_t * program = Py_DecodeLocale ( argv [ 0 ], NULL ); if ( program == NULL ) ... { fprintf ( stderr , "Fatal error: cannot decode argv[0] \n " ); exit ( 1 ); } Py_SetProgramName ( ... ; return 1 ; } Py_Initialize (); pName = PyUnicode_DecodeFSDefault ( argv [ 1 ]); /* Error checking of pName ... 始まる部分です: Py_Initialize (); pName = PyUnicode_DecodeFSDefault ( argv [ 1 ]); /* Error checking of pName ...
https://man.plustar.jp/python/extending/embedding.html - [similar]
16.1. os --- 雑多なオペレーティングシステムインタフェース — Python 3.6.5 ドキュ... 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... or 'strict' on Windows; return bytes unchanged. fsdecode() はこの逆変換を行う関数です。 バージョン 3.2 で追 ... したオブジェクトを受け入れるようになりました。 os. fsdecode ( filename ) ¶ Decode the path-like filename from ... e a string object, and the call may raise a UnicodeDecodeError. If the path is a bytes object (direct or ind ... argument is of type bytes and str otherwise. Use fsdecode() to decode byte filenames. path ¶ os.path.join(sc ...
https://man.plustar.jp/python/library/os.html - [similar]
8.11. pprint --- データ出力の整然化 — Python 3.6.5 ドキュメント 6506
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... nfo = url . info () ... raw_data = url . read () . decode ( http_info . get_content_charset ()) >>> project_ ...
https://man.plustar.jp/python/library/pprint.html - [similar]
PREV 1 2 3 4 5 6 NEXT