Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 51 - 59 of about 59 for decode (0.067 sec.)
3. データモデル — Python 3.6.5 ドキュメント 6375
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 言語リファレ ... s に変換するために使うことができます。また、 bytes.decode() によりその逆が実行することができます。 タプル型 ... ジェクトを作成できます。また、 bytes オブジェクトは decode() メソッドを通して文字列にデコードできます。 変更可 ...
https://man.plustar.jp/python/reference/datamodel.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 6375
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... から出来ていれば動くし非 ASCII バイトがあれば UnicodeDecodeError となっていたでしょう。この、データ値に依存した ... ってください。そして bytes から str にするには bytes.decode() を使います。それぞれ bytes(s, encoding=...) 、 s ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 6375
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... は、バイト列からネイティブ文字列に h.encode('utf-8').decode('latin-1') で変換する必要があります。(---訳注: この ... b ) >>> len ( c ) 77 >>> gzip . decompress ( c ) . decode ()[: 42 ] # decompress and convert to text 'Three ... 。 os モジュールは新たに 2 つの関数 fsencode() と fsdecode() を追加しました。それぞれファイル名のエンコード、 ... モードでは、デコード出来ないバイト列に対して UnicodeDecodeError を、エンコードできない文字に対して UnicodeEnc ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 6244
ナビゲーション 索引 モジュール | 次へ | 前へ | 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 ); } /* Add a built-in mo ...
https://man.plustar.jp/python/extending/extending.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 6244
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... nicode ): return o . encode ( 'unicode_escape' ) . decode ( 'ascii' ) return super ( Encoder , self ) . defa ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 6244
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... name is None : ... break ... print ( item . name . decode ( "ascii" ), item . size ) ... _frozen_importlib 3 ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
31.5. importlib --- import の実装 — Python 3.6.5 ドキュメント 6244
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ect を受け入れるようになりました。 importlib.util. decode_source ( source_bytes ) ¶ 与えられたソースコードを ...
https://man.plustar.jp/python/library/importlib.html - [similar]
What's New in Python 2.5 — Python 3.6.5 ドキュメント 6244
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... chr(127) can be converted True 以前はこれは UnicodeDecodeError を起こしていましたので、2.5 でのこれは辞書のア ... いる unichr(128) や chr(128) を探そうとすると UnicodeDecodeError 例外が起こっていたでしょう。2.5 での、 辞書を ... 注: 原文では this exception といっているので UnicodeDecodeError が起こるように読めるのですが、2.5 時点での振る ... 要素タプルのように振舞うだけでなく、属性 encode , decode , incrementalencoder , incrementaldecoder , stream ...
https://man.plustar.jp/python/whatsnew/2.5.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 6244
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... 42, "spam": "foo"}' >>> json . loads ( in_json ) # Decode into a Python object {"spam": "foo", "parrot": 42} ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
PREV 1 2 3 4 5 6 NEXT