Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 214 for FILE (0.067 sec.)
7. 入力と出力 — Python 3.6.5 ドキュメント 5969
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... にあります。 7.2. ファイルを読み書きする ¶ open() は file object を返します。大抵、 open(filename, mode) のよ ... つの引数を伴って呼び出されます。 >>> f = open ( 'workfile' , 'w' ) 最初の引数はファイル名の入った文字列です。 ... て書くよりずっと簡潔に書けます: >>> with open ( 'workfile' ) as f : ... read_data = f . read () >>> f . clos ... >>> f . read () Traceback (most recent call last): File "<stdin>" , line 1 , in <module> ValueError : I/O ...
https://man.plustar.jp/python/tutorial/inputoutput.html - [similar]
索引 — Python 3.6.5 ドキュメント 5927
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » 索引 – 記号 ! (pdb command) != 演 ... 演算子 += augmented assignment - 演算子 --create <tarfile> <source1> ... <sourceN> tarfile コマンドラインオプ ... ils inspect コマンドラインオプション --extract <tarfile> [<output_dir>] tarfile コマンドラインオプション - ... --info zipapp コマンドラインオプション --list <tarfile> tarfile コマンドラインオプション --locals unittes ... ョン --sort-keys コマンドラインオプション --test <tarfile> tarfile コマンドラインオプション --user-base site ...
https://man.plustar.jp/python/genindex-%E8%A8%98%E5%8F%B7.html - [similar]
Logging クックブック — Python 3.6.5 ドキュメント 5927
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Logg ... ' ) logger . setLevel ( logging . DEBUG ) # create file handler which logs even debug messages fh = loggin ... g . FileHandler ( 'spam.log' ) fh . setLevel ( logging . DE ... ' ) logger . setLevel ( logging . DEBUG ) # create file handler which logs even debug messages fh = loggin ... g . FileHandler ( 'spam.log' ) fh . setLevel ( logging . DE ...
https://man.plustar.jp/python/howto/logging-cookbook.html - [similar]
3. setup 設定ファイル (setup configuration file) を書く — Python 3.6.5 ドキュメ... 5885
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... ジョン) » 3. setup 設定ファイル (setup configuration file) を書く ¶ 時に、配布物をビルドする際に必要な全ての ... であるかぎり、ユーザに設定ファイル (configuration file) setup.cfg を提供して編集してもらうのが、安上がりで ... 上書きできます The basic syntax of the configuration file is simple: [command] option = value ... ここで、 c ... modules --build-temp (-t) directory for temporary files (build by-products) --inplace (-i) ignore build-l ...
https://man.plustar.jp/python/distutils/configfile.html - [similar]
25.5. IDLE — Python 3.6.5 ドキュメント 5801
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... しでは、 "item [訳語]" の様式とします。 ) 25.5.1.1. File メニュー (Shell ウィンドウ、Editor ウィンドウ) ¶ N ... ew File [新規ファイル] 新しいファイル編集ウィンドウを作成し ... ログを使って既存のファイルをオープンします。 Recent Files [最近使ったファイル] 最近使ったファイルのリストを ... 選択された文字列があれば、それを検索します。 Find in Files... [ファイルから検索...] ファイル検索ダイアログを ...
https://man.plustar.jp/python/library/idle.html - [similar]
32.10. py_compile --- Python ソースファイルのコンパイル — Python 3.6.5 ドキュメ... 5769
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ーが発生すると送出される例外。 py_compile. compile ( file , cfile=None , dfile=None , doraise=False , optimi ... シュファイルに書き出します。ソースコードはファイル名 file で渡します。バイトコードは cfile に書き込まれ、デフ ... や PEP 488 にある .pyc で終わるパスです。例えば、 file が /foo/bar/baz.py だった場合、 cfile は Python 3. ... r/__pycache__/baz.cpython-32.pyc になります。もし dfile が指定されたら、 file の代わりにソースファイルの名 ...
https://man.plustar.jp/python/library/py_compile.html - [similar]
3. Windows で Python を使う — Python 3.6.5 ドキュメント 5769
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python のセットアッ ... 者資格か承認が必要かもしれません。 Python は Program Files ディレクトリにインストールされます。 Windows の P ... KEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem@LongPathsEnabled の値を 1 に設定する必要があ ... ためのデフォルトインストール先ディレクトリ。 %ProgramFiles%\Python X.Y または %ProgramFiles(x86)%\Python X.Y ... してデフォルトで GUI に表示される値。 (空) AssociateFiles ランチャもインストールする場合に、ファイルの関連付 ...
https://man.plustar.jp/python/using/windows.html - [similar]
24.2. cmd --- 行指向のコマンドインタープリタのサポート — Python 3.6.5 ドキュメ... 5685
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... p or ? to list commands. \n ' prompt = '(turtle) ' file = None # ----- basic turtle commands ----- def do_ ... do_record ( self , arg ): 'Save future commands to filename: RECORD rose.cmd' self . file = open ( arg , ' ... playback ( self , arg ): 'Playback commands from a file: PLAYBACK rose.cmd' self . close () with open ( ar ... ( self , line ): line = line . lower () if self . file and 'playback' not in line : print ( line , file = ...
https://man.plustar.jp/python/library/cmd.html - [similar]
6. Python Package Index (PyPI) — Python 3.6.5 ドキュメント 5643
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python モジュールの ... --sign option to tell upload to sign each uploaded file using GPG (GNU Privacy Guard). The gpg program mus ... commands both check for the existence of a .pypirc file at the location $HOME/.pypirc . If this file exist ... me, password, and repository URL configured in the file. The format of a .pypirc file is as follows: [dist ... ls.core import setup with open ( 'README.txt' ) as file : long_description = file . read () setup ( name = ...
https://man.plustar.jp/python/distutils/packageindex.html - [similar]
11.6. tempfile --- 一時ファイルやディレクトリの作成 — Python 3.6.5 ドキュメント 5643
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... 11. ファイルとディレクトリへのアクセス » 11.6. tempfile --- 一時ファイルやディレクトリの作成 ¶ ソースコード ... : Lib/tempfile.py このモジュールは一時ファイルやディレクトリを作成 ... ている全てのプラットフォームで動作します。 TemporaryFile 、 NamedTemporaryFile 、 TemporaryDirectory 、 Spo ... oledTemporaryFile は自動的に後始末をし、コンテクスト管理者として使う ...
https://man.plustar.jp/python/library/tempfile.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 NEXT