Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 181 - 190 of about 214 for file (0.212 sec.)
5. データ構造 — Python 3.6.5 ドキュメント 4590
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... r is raised >>> [ x , x ** 2 for x in range ( 6 )] File "<stdin>", line 1, in <module> [x, x**2 for x in r ... t [ 0 ] = 88888 Traceback (most recent call last): File "<stdin>" , line 1 , in <module> TypeError : 'tupl ...
https://man.plustar.jp/python/tutorial/datastructures.html - [similar]
1. コマンドラインと環境 — Python 3.6.5 ドキュメント 4590
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... 続された標準入力とともに起動された場合、 EOF (end-of-file 文字。 UNIX では Ctrl-D で、Windows では Ctrl-Z, E ... onditional on the value of __debug__ . Augment the filename for compiled ( bytecode ) files by adding .opt ... YTHONOPTIMIZE . バージョン 3.5 で変更: Modify .pyc filenames according to PEP 488 . -OO ¶ Do -O and also d ... iscard docstrings. Augment the filename for compiled ( bytecode ) files by adding .opt ...
https://man.plustar.jp/python/using/cmdline.html - [similar]
4. ソースコード配布物を作成する — Python 3.6.5 ドキュメント 4548
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... デフォルト形式です 外部ユーティリティの zip か、 zipfile モジュール (Python 1.6 からは標準 Python ライブラリ ... ジデータをインストールする を参照してください。 data_files メタデータにマッチする全てのファイル。 追加のファ ... ピックへ 3. setup 設定ファイル (setup configuration file) を書く 次のトピックへ 5. ビルド済み配布物を作成す ...
https://man.plustar.jp/python/distutils/sourcedist.html - [similar]
8.7. array --- 効率のよい数値アレイ — Python 3.6.5 ドキュメント 4548
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 列から要素を追加します。文字列は、 (ファイルから fromfile() メソッドを使って値を読み込んだときのように) マシ ... の名前が frombytes() に変更されました。 array. fromfile ( f , n ) ¶ ファイルオブジェクト f から (マシンのデ ... ンの値の array に変換して、 bytes の形で返します ( tofile() メソッドを使ってファイルに書かれるバイト列と同じ ... g() の名前が tobytes() に変更されました。 array. tofile ( f ) ¶ すべての要素を (マシンの値の形式で) file o ...
https://man.plustar.jp/python/library/array.html - [similar]
8.3. collections --- コンテナデータ型 — Python 3.6.5 ドキュメント 4548
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... an empty deque Traceback (most recent call last): File "<pyshell#6>" , line 1 , in - toplevel - d . pop ( ... ail フィルタに相当する機能を提供します: def tail ( filename , n = 10 ): 'Return the last n lines of a file ... ' with open ( filename ) as f : return deque ( f , n ) deque を使用す ...
https://man.plustar.jp/python/library/collections.html - [similar]
35.9. fcntl --- fcntl および ioctl システムコール — Python 3.6.5 ドキュメント 4548
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... システムコール ¶ このモジュールでは、ファイル記述子 (file descriptor) に基づいたファイル制御および I/O 制御を ... 述子 fd を最初の引数に取ります。 この値は sys.stdin.fileno() が返すような整数のファイル記述子でも、 sys.std ... in 自体のような、純粋にファイル記述子だけを返す fileno() メソッドを提供している io.IOBase オブジェクトで ... d , arg=0 ) ¶ 操作 cmd をファイル記述子 fd (または fileno() メソッドを提供しているファイルオブジェクト) に ...
https://man.plustar.jp/python/library/fcntl.html - [similar]
12.3. shelve --- Python オブジェクトの永続化 — Python 3.6.5 ドキュメント 4548
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 含まれます。キーは通常の文字列です。 shelve. open ( filename , flag='c' , protocol=None , writeback=False ) ... ¶ 永続的な辞書を開きます。指定された filename は、根底にあるデータベースの基本ファイル名とな ... ります。副作用として、 filename には拡張子がつけられる場合があり、ひとつ以上の ... けるパラメータと同様に解釈されます。 class shelve. DbfilenameShelf ( filename , flag='c' , protocol=None , w ...
https://man.plustar.jp/python/library/shelve.html - [similar]
What's New In Python 3.0 — Python 3.6.5 ドキュメント 4548
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... derr , "fatal error" New : print ( "fatal error" , file = sys . stderr ) Old : print ( x , y ) # prints re ... pickle / cPickle のペアがこの対象になりました。 profile モジュールは 3.1 でこれが予定されています。 String ... びに write() メソッドは廃止されました。代わりに fromfile() ならびに tofile() を使用してください。また、arra ... した。 関数 os.tmpnam() 、 os.tempnam() および os.tmpfile() は tempfile のため削除されました。 tokenize モジ ...
https://man.plustar.jp/python/whatsnew/3.0.html - [similar]
オブジェクトプロトコル (object protocol) — Python 3.6.5 ドキュメント 4516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 、返却します) 。 int PyObject_Print ( PyObject *o , FILE *fp , int flags ) ¶ オブジェクト o をファイル fp に ...
https://man.plustar.jp/python/c-api/object.html - [similar]
拡張と埋め込み FAQ — Python 3.6.5 ドキュメント 4516
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... rser_ParseString ( code , & _PyParser_Grammar , Py_file_input , & e ); if ( n == NULL ) { if ( e . error = ... パイルし、それを g++ で再リンク (Python Modules Makefile 内の LINKCC を変更) し、拡張を g++ でリンク (例えば ...
https://man.plustar.jp/python/faq/extending.html - [similar]