Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 125 for read (0.231 sec.)
2. 拡張の型の定義: チュートリアル — Python 3.6.5 ドキュメント 5393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... yInit_custom ( void ) { PyObject * m ; if ( PyType_Ready ( & CustomType ) < 0 ) return NULL ; m = PyModule ... の一部のコードはそうではないでしょう: if ( PyType_Ready ( & CustomType ) < 0 ) return ; これは、 NULL に初 ... Init_custom2 ( void ) { PyObject * m ; if ( PyType_Ready ( & CustomType ) < 0 ) return NULL ; m = PyModule ... 't fill the tp_alloc slot ourselves. Rather PyType_Ready() fills it for us by inheriting it from our base ...
https://man.plustar.jp/python/extending/newtypes_tutorial.html - [similar]
21.2. cgi --- CGI (ゲートウェイインタフェース規格) のサポート — Python 3.6.5 ド... 5393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 属性から以下のようにデータを読み込むことができます ( read() および readline() メソッドはバイト列を返します): ... inecount = 0 while True : line = fileitem . file . readline () if not line : break linecount = linecount + ...
https://man.plustar.jp/python/library/cgi.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 5393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = re . findall ( r '\w+' , open ( 'hamlet.txt' ) . read () . lower ()) >>> Counter ( words ) . most_common ... p . y # fields also accessible by name 33 >>> p # readable __repr__ with a name=value style Point(x=11, y ... sv for emp in map ( EmployeeRecord . _make , csv . reader ( open ( "employees.csv" , "rb" ))): print ( emp ...
https://man.plustar.jp/python/library/collections.html - [similar]
14.1. csv --- CSV ファイルの読み書き — Python 3.6.5 ドキュメント 5393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... SV 形式を定義することができます。 csv モジュールの reader および writer オブジェクトはシーケンス型を読み書 ... きします。プログラマは DictReader や DictWriter クラスを使うことで、データを辞書形 ... csv モジュールでは以下の関数を定義しています: csv. reader ( csvfile , dialect='excel' , **fmtparams ) ¶ 与 ... えられた csvfile 内の行を反復処理するような reader オブジェクトを返します。 csvfile はイテレータ( i ...
https://man.plustar.jp/python/library/csv.html - [similar]
5. 組み込み例外 — Python 3.6.5 ドキュメント 5393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... (EOF) に達した場合に送出されます。(注意: io.IOBase.read() と io.IOBase.readline() メソッドは、EOF に達する ... しそうになった場合に送出されます。 errno EAGAIN , EALREADY , EWOULDBLOCK および EINPROGRESS に対応します。 B ...
https://man.plustar.jp/python/library/exceptions.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 5393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ry problem. When IDLE first starts, it attempts to read user configuration files in ~/.idlerc/ (~ is one's ...
https://man.plustar.jp/python/library/idle.html - [similar]
29.12. inspect --- 活動中のオブジェクトの情報を取得する — Python 3.6.5 ドキュメ... 5393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ソースコードの先頭行 co_flags bitmap of CO_* flags, read more here co_lnotab 行番号からバイトコードインデッ ... ignores __wrapped__ attributes and includes the already bound first parameter in the signature output for ... waiting to start or resume or execution, or has already terminated. getgeneratorstate() allows the curren ...
https://man.plustar.jp/python/library/inspect.html - [similar]
19.2. json --- JSON エンコーダおよびデコーダ — Python 3.6.5 ドキュメント 5393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ject_pairs_hook=None , **kw ) ¶ Deserialize fp (a .read() -supporting file-like object containing a JSON d ...
https://man.plustar.jp/python/library/json.html - [similar]
20.13. xml.parsers.expat --- Expat を使った高速な XML 解析 — Python 3.6.5 ドキ... 5393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... クトから読み込んだXMLデータを解析します。 file には read(nbytes) メソッドのみが必要です。このメソッドはデー ... Expat エラー定数 前のトピックへ 20.12. xml.sax.xmlreader --- XML パーサのインタフェース 次のトピックへ 21 ...
https://man.plustar.jp/python/library/pyexpat.html - [similar]
13.6. tarfile --- tar アーカイブファイルの読み書き — Python 3.6.5 ドキュメント 5393
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... イルを読み込み用にオープンするのに適していないなら、 ReadError が送出されます。これを防ぐには mode 'r' を使っ ... シークが行えなくなります。 fileobj を指定する場合、 read() および write() メソッドを持つ ( mode に依存した) ... le 例外のための基本クラスです。 exception tarfile. ReadError ¶ tar アーカイブがオープンされた時、 tarfile ... mber が一般ファイルまたはリンクの場合、 io.BufferedReader オブジェクトが返されます。それ以外の場合、 None ...
https://man.plustar.jp/python/library/tarfile.html - [similar]
PREV 3 4 5 6 7 8 9 10 11 12 13 NEXT