Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 164 for sys (0.138 sec.)
8. エラーと例外 — Python 3.6.5 ドキュメント 5277
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 例外を処理できるようにする) 用途にも使えます: import sys try : f = open ( 'myfile.txt' ) s = f . readline ( ... integer." ) except : print ( "Unexpected error:" , sys . exc_info ()[ 0 ]) raise try ... except 文には、オ ... くのに役立ちます。例えば次のようにします: for arg in sys . argv [ 1 :]: try : f = open ( arg , 'r' ) except ...
https://man.plustar.jp/python/tutorial/errors.html - [similar]
18.5.2. イベントループ — Python 3.6.5 ドキュメント 5220
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... で ProactorEventLoop を使用した例: import asyncio , sys if sys . platform == 'win32' : loop = asyncio . Pr ...
https://man.plustar.jp/python/library/asyncio-eventloops.html - [similar]
32.12. dis --- Python バイトコードの逆アセンブラ — Python 3.6.5 ドキュメント 5220
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... の情報を、 file (または file が指定されていなければ sys.stdout ) に表示します。 これは、インタラクティブシ ... 、アセンブリをそこに書き込みます。 そうでない場合は sys.stdout に出力します。 バージョン 3.4 で変更: file ... 、アセンブリをそこに書き込みます。 そうでない場合は sys.stdout に出力します。 バージョン 3.4 で変更: file ... 、アセンブリをそこに書き込みます。 そうでない場合は sys.stdout に出力します。 バージョン 3.4 で変更: file ...
https://man.plustar.jp/python/library/dis.html - [similar]
35.9. fcntl --- fcntl および ioctl システムコール — Python 3.6.5 ドキュメント 5220
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ファイル記述子 fd を最初の引数に取ります。 この値は sys.stdin.fileno() が返すような整数のファイル記述子でも ...sys.stdin 自体のような、純粋にファイル記述子だけを返す ...
https://man.plustar.jp/python/library/fcntl.html - [similar]
2. Python インタプリタを使う — Python 3.6.5 ドキュメント 5220
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ト名以後に指定した引数は、文字列のリストに変換されて sys モジュールの argv 変数に格納されます。 import sys ...
https://man.plustar.jp/python/tutorial/interpreter.html - [similar]
12. 仮想環境とパッケージ — Python 3.6.5 ドキュメント 5220
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... ( default, May 6 2016 , 10 :59:36 ) ... >>> import sys >>> sys.path [ '' , '/usr/local/lib/python35.zip' ...
https://man.plustar.jp/python/tutorial/venv.html - [similar]
1. C や C++ による Python の拡張 — Python 3.6.5 ドキュメント 5174
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python インタプリタ ... reate a Python interface to the C library function system() [1] . This function takes a null-terminated c ... on as follows: >>> import spam >>> status = spam . system ( "ls -l" ) まずは spammodule.c を作成するところ ... ます。 次にファイルに追加する内容は、Python 式 spam.system(string) を評価する際に呼び出されることになる C ... すかは、後ですぐわかります): static PyObject * spam_system ( PyObject * self , PyObject * args ) { const c ...
https://man.plustar.jp/python/extending/extending.html - [similar]
一般 Python FAQ — Python 3.6.5 ドキュメント 5174
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python よくある質問 ... ng, profiling, parsing Python code), and operating system interfaces (system calls, filesystems, TCP/IP s ... ように "a0" がつく次のマイナーバージョンになります。 sys.version , sys.hexversion , sys.version_info につい ... www.python.org をホストしてくれています。 Upfront Systems が bugs.python.org をホストしています。 the Wi ...
https://man.plustar.jp/python/faq/general.html - [similar]
32.11. compileall --- Python ライブラリをバイトコンパイル — Python 3.6.5 ドキュ... 5174
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... です。引数が与えられなければ、 -l <directories from sys.path> を渡したのと同じように動作します。 -l ¶ サブ ... e=False , quiet=0 , legacy=False , optimize=-1 ) ¶ sys.path からたどって見つけたすべての .py ファイルをバ ...
https://man.plustar.jp/python/library/compileall.html - [similar]
16.2. io --- ストリームを扱うコアツール — Python 3.6.5 ドキュメント 5174
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... は、読み書き可能で、ランダムアクセス可能です。 参考 sys 標準 IO ストリームを持っています: sys.stdin , sys. ... stdout , sys.stderr 。 16.2.3. クラス階層 ¶ I/O ストリームの実装 ...
https://man.plustar.jp/python/library/io.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 NEXT