Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 41 - 50 of about 125 for read (0.109 sec.)
16. 付録 — Python 3.6.5 ドキュメント 5995
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... .isfile('.pythonrc.py'): exec(open('.pythonrc.py').read()) のようなプログラムを書くことができます。スクリプ ... open ( filename ) as fobj : startup_file = fobj . read () exec ( startup_file ) 16.1.4. カスタマイズ用モジ ... ールのドキュメントを参照してください。 脚注 [1] GNU Readline パッケージに関する問題のせいで妨げられることが ...
https://man.plustar.jp/python/tutorial/appendix.html - [similar]
Unicode HOWTO — Python 3.6.5 ドキュメント 5921
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Unic ... Jukka Korpela has written an introductory guide to reading the Unicode character tables. また別の 良い入門 ... ing sequences. The work of implementing this has already been done for you: the built-in open() function c ... and accepts Unicode parameters for methods such as read() and write() . This works through open() 's encod ... blah blah \n ' ) f . seek ( 0 ) print ( repr ( f . readline ()[: 1 ])) Unicode 文字 U+FEFF は byte-order m ...
https://man.plustar.jp/python/howto/unicode.html - [similar]
Unicode オブジェクトと codec — Python 3.6.5 ドキュメント 5848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... I を呼び出す前に、このオブジェクトに対し PyUnicode_READY() を呼び出す必要があるでしょう。 Unicode 型 ¶ 以下 ... のサブタイプでないときに真を返します。 int PyUnicode_READY ( PyObject *o ) ¶ 文字列オブジェクト o が "正統な ... のオブジェクトにアクセスする前に、忘れずに PyUnicode_READY() を呼び出してください。 バージョン 3.3 で追加. P ... の値です。 バージョン 3.3 で追加. Py_UCS4 PyUnicode_READ ( int kind , void *data , Py_ssize_t index ) ¶ 正統 ...
https://man.plustar.jp/python/c-api/unicode.html - [similar]
7. 使用例 — Python 3.6.5 ドキュメント 5848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... 。 distutils.dist.DistributionMetadata クラスとその read_pkg_file() メソッドを使って、この静的ファイルを読む ... metadata = DistributionMetadata () >>> metadata . read_pkg_file ( open ( 'distribute-0.6.8-py2.7.egg-info ...
https://man.plustar.jp/python/distutils/examples.html - [similar]
ソケットプログラミング HOWTO — Python 3.6.5 ドキュメント 5848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » ソケ ... ntsocket # in this case, we'll pretend this is a threaded server ct = client_thread ( clientsocket ) ct . ... 、クライアントソケットをファイルっぽい種族に変形して read と write を使っても良い。後者は Java のソケットの表 ... た「ファイル」なので、何かを write してすぐに返答を read するというのはよくある間違いだ。間に flush を入れな ... でもほとんど問題なく書ける、という程度には似ている: ready_to_read , ready_to_write , in_error = \ select . ...
https://man.plustar.jp/python/howto/sockets.html - [similar]
19.6. base64 --- Base16, Base32, Base64, Base85 データの符号化 — Python 3.6.5 ... 5848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... file objects でなければなりません。 input は input.readline() が空バイト列を返すまで読まれます。 base64. d ... ut and output must be file objects . input will be read until input.read() returns an empty bytes object. ...
https://man.plustar.jp/python/library/base64.html - [similar]
7.2. codecs --- codec レジストリと基底クラス — Python 3.6.5 ドキュメント 5848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... class codecs. CodecInfo ( encode , decode , streamreader=None , streamwriter=None , incrementalencoder=No ... 態) を保持することができます。 streamwriter ¶ streamreader ¶ ストリームライターとリーダーのクラスまたはファ ... 数です。これらは、基底クラスの StreamWriter と StreamReader が定義するインターフェースをそれぞれ提供する必要 ... ートしなければ LookupError を送出します。 codecs. getreader ( encoding ) ¶ 与えられたエンコーディングに対する ...
https://man.plustar.jp/python/library/codecs.html - [similar]
13.2. gzip --- gzip ファイルのサポート — Python 3.6.5 ドキュメント 5848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... れました。 バージョン 3.3 で変更: io.BufferedIOBase.read1() メソッドを実装しました。 バージョン 3.4 で変更: ... ライクオブジェクト の書き込みがサポートされました。 read() メソッドが None を引数として受け取るようになりま ... oe/file.txt.gz' , 'rb' ) as f : file_content = f . read () GZIP 圧縮されたファイルを作成する例: import gzi ...
https://man.plustar.jp/python/library/gzip.html - [similar]
18.3. select --- I/O 処理の完了を待機する — Python 3.6.5 ドキュメント 5848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... りました。 select. kevent ( ident , filter=KQ_FILTER_READ , flags=KQ_EV_ADD , fflags=0 , data=0 , udata=0 ) ... ter ¶ カーネルフィルタの名前。 定数 意味 KQ_FILTER_READ 記述子を受け取り、読み込めるデータが存在する時に戻 ... kevent. fflags ¶ フィルタ依存のフラグ。 KQ_FILTER_READ と KQ_FILTER_WRITE フィルタのフラグ: 定数 意味 KQ_ ...
https://man.plustar.jp/python/library/select.html - [similar]
17.5. subprocess --- サブプロセス管理 — Python 3.6.5 ドキュメント 5848
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... eams. バージョン 3.6 で追加: encoding and errors were added. startupinfo は、基底の CreateProcess 関数に渡 ... t = PIPE ) as proc : log . write ( proc . stdout . read ()) バージョン 3.2 で変更: コンテキストマネージャー ... one ) ¶ Interact with process: Send data to stdin. Read data from stdout and stderr, until end-of-file is ... the stdout argument was PIPE , this attribute is a readable stream object as returned by open() . Reading ...
https://man.plustar.jp/python/library/subprocess.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT