| 例文 |
python fileの部分一致の例文一覧と使い方
該当件数 : 61件
The file Tools/scripts/ftpmirror. py 例文帳に追加
PythonのソースディストリビューションのTools/scripts/ftpmirror.py - Python
Derives a file-descriptor from a Python object. 例文帳に追加
Python オブジェクトからファイル記述子を取り出します。 - Python
The synthesized Python script for the named object's docstring is written to a temporary file, and then that file is run under the control of the Python debugger,例文帳に追加
指定したオブジェクトの docstring から合成された Python スクリプトは一時ファイルに書き出され、その後 Python デバッガ - Python
This subtype of PyObject represents a Python file object. 例文帳に追加
この PyObject のサブタイプは Python のファイル型オブジェクトを表現します。 - Python
Return the name of the Python source file in which an object was defined.例文帳に追加
オブジェクトを定義しているPythonソースファイルの名前を返します。 - Python
An example may be found in the file Demo/embed/demo.c in the Python source distribution.例文帳に追加
Python ソース配布物中の Demo/embed/demo.c ファイル内に例があります。 - Python
when parsing a complete Python program (from a file or from a string); 例文帳に追加
(ファイルや文字列内の) 完全な Python プログラムを構文解析するとき; - Python
Execute the Python code contained in the file filename in the restricted environment.例文帳に追加
ファイル filename に含まれた Python コードを制限された環境で実行します。 - Python
Under Python 1.6 and later, Python'sdefault ``installation prefix'' is C:Python, so the system configuration file is normallyC:PythonLibdistutilsdistutils.cfg.Under Python 1.5.2, the default prefix wasC:ProgramFilesPython, and the Distutils were not part of the standard library--so the system configuration file would beC:ProgramFilesPythondistutilsdistutils.cfgin a standard Python 1.5.2 installation under Windows.例文帳に追加
Python 1.5.2 ではデフォルトのプレフィクスは C:ProgramFilesPythonであり、Distutils は標準ライブラリの一部ではありません -- 従って、システム設定ファイルは、 Windows 用の標準の Python 1.5.2 ではC:ProgramFilesPythondistutilsdistutils.cfg になります。 - Python
The format is specific to Python, butindependent of machine architecture issues (e.g., you can write a Python value to a file on a PC, transport the file to a Sun, and readit back there).例文帳に追加
このバイナリ形式は Python 特有のものですが、マシンアーキテクチャ非依存のものです (つまり、Python の値を PC 上でファイルに書き込み、Sun に転送し、そこで読み戻すことができます)。 - Python
This is a plain Python file, which, in the most simple case, could look like this:例文帳に追加
setup.py は普通の Python プログラムファイルで、ほとんどの場合以下のような見かけになっています: - Python
This function reads and decodes the image on the specified file, andreturns it as a Python string. 例文帳に追加
指定したファイル上の画像を読み込んでデコードし、Python文字列にして返します。 - Python
Return an abstract syntax tree for the Python source code in the file specified by path.例文帳に追加
path で指定されたファイル中の Python ソースコードから得られた抽象構文木 AST を返します。 - Python
Load and initialize a module implemented as a Python source file and return its module object.例文帳に追加
Pythonソースファイルとして実装されているモジュールをロードして初期化し、モジュールオブジェクトを返します。 - Python
1.3.4 ``Save as'' versus ``Save as Applet'' When you are done writing your Python script you have the option of saving it as an ``applet'' (by selecting ``Save as applet'' from the``File'' menu).例文帳に追加
1.3.4 ``Save as'' と ``Save as Applet'' の違い Python スクリプトを書いたら、ファイルを 「アプレット」としても保存できます (``File''メニューの``Save as applet''を選びます) 。 - Python
This function reads and decodes the image on the specified file, and returns it as a Python string.例文帳に追加
この関数は指定されたファイル上の画像を読み出して復号化し、Python 文字列として返します。 - Python
a module written in Python and contained in a single .py file (and possibly associated .pyc and/or.pyo files).例文帳に追加
Python で書かれ、単一の .py ファイル内に収められたモジュールです (.pyc かつ/または .pyo ファイルと関連があります) 。 - Python
Pythonlongs are then used to represent file sizes, offsets and other values that can exceed the range of a Python int.例文帳に追加
この場合、ファイルのサイズ、オフセットおよびPython の通常整数型の範囲を超えるような値の表現には Python の長整数型が使われます。 - Python
The object returned has file-likesemantics, but it is not a Python file object, so there may be subtle differences.例文帳に追加
返されたオブジェクトはファイルのように見えるかもしれませんが、これは Python のファイルオブジェクトではありませんので扱いに微妙な違いがあります。 - Python
When dump is given it should refer to a file object, and processfile will stop after decoding the resources and dump the Python representation of the terminology resources to this file. verbose should also be a file object, and specifying it will cause processfile to tell you what it is doing.例文帳に追加
dump にはファイルオブジェクトを与えます、これを指定するとリソースを読取った後に停止して processfile がコード化した用語リソースの Python 表現をダンプします。 - Python
Refer to the file Grammar/Grammar in the Python distribution for the definitions of the names in the context of the language grammar.例文帳に追加
言語の文法のコンテキストにおける名前の定義については、PythonディストリビューションのファイルGrammar/Grammarを参照してください。 - Python
The file is parsed and evaluated as a sequence of Python statements (similarly to a module) using the globals and locals dictionaries as global and local namespace.例文帳に追加
file は読み込まれ、(モジュールのように) Python 文の列として評価されます。 このとき globals および locals がそれぞれグローバルおよびローカルな名前空間として使われます。 - Python
That short script executes and verifies any interactive Python examples contained in the file example.txt.例文帳に追加
この短いスクリプトは、example.txt というファイルの中に入っている対話モードの Python 操作例全てを実行して、その内容を検証します。 - Python
The parser itself is created from a grammarspecification defined in the file Grammar/Grammar in the standard Python distribution.例文帳に追加
標準のPythonディストリビューションに含まれるファイルGrammar/Grammarの中で定義されている文法仕様から、パーサ自身は作成されています。 - Python
As of Python 2.3a2 the only sure way of getting MacPython-OSX on your machine is getting a source distribution and building what is called a "framework Python".The details are in the file Mac/OSX/README.As binary installers become available the details will be posted tohttp://www.cwi.nl/~jack/macpython.html.What you get after installing is a number of things:例文帳に追加
Python 2.3a2 の時点では、自分のマシンに MacPython-OSX をインストールするにはソース配布物を取得し、いわゆる "framework Python" をビルドするのが唯一の正しい方法です。 ビルド方法の詳細は Mac/OSX/README にあります。 - Python
In a real program, you may want to get the Python script from another source, perhaps a text-editor routine, a file, or a database.例文帳に追加
実際のプログラムでは、Python スクリプトを他のソース、おそらくテキストエディタルーチンやファイル、データベースから取り出したいと考えるかもしれません。 - Python
Returns 0when the input was executed successfully, -1 if there was an exception, or an error code from the errcode.h include file distributed as part of Python if there was a parse error.例文帳に追加
パースエラーの場合はPythonの一部として配布されているerrcode.hインクルードファイルにあるエラーコードを返します。 (Python.hはerrcode.hをインクルードしません。 - Python
The file content is treated as if it were a single giant docstring; the file doesn'tneed to contain a Python program! For example, perhaps example.txtcontains this:例文帳に追加
ファイルの内容は一つの巨大な docstring であるかのように扱われます;ファイルが Python プログラムでなくてもよいのです! 例えば、example.txt には以下のような内容が入っているかもしれません: - Python
(Python is built with Microsoft Visual C++, which uses COFF as the object file format.)For this reason you have to convert Python's librarypython24.lib into the Borland format.例文帳に追加
Microsoft Visual C++ は COFF をオブジェクトファイル形式に使います。 )このため、以下のようにして、 Python のライブラリ python24.lib を Borland の形式に変換する必要があります: - Python
prefix/lib/python1.5/site-packages/distutils,so the system configuration file should be put there under Python1.5.2. 例文帳に追加
prefix/lib/python1.5/site-packages/distutilsにインストールされるため、 Python 1.5.2 では設定ファイルをそこに置かなければなりません。 - Python
In addition to using the Python IDE interactively, you can also type out a complete Python program, saving it incrementally, and execute it or smaller selections of it.You can create a new script, open a previously saved script, and save your currently open script by selecting the appropriate item in the``File'' menu.例文帳に追加
Python IDE は、対話的に使うだけでなく、Python プログラムを書き上げたり、順次保存したりでき、全体や一部分の実行もできます。 「File」メニューの適当なメニューアイテムを選択すれば新たにスクリプトを作成したり、前に保存したスクリプトを開いたり、 現在開いているスクリプトを保存したりできます。 - Python
This subsection describes the necessary steps to use Distutils with the Borland C++ compiler version 5.5.First you have to know that Borland's object file format (OMF) is different from the format used by the Python version you can download from the Python or ActiveState Web site.例文帳に追加
この小節では、 Borland C++ コンパイラのバージョン 5.5 でDistutils を使うために必要な手順について述べています。 まず、 Borland のオブジェクトファイル形式 (OMF)は、Python 公式サイトや ActiveState の Web サイトからダウンロードできるバージョンの Python が使っている形式とは違うことを知っておかねばなりません (Python は通常、 Microsoft Visual C++ でビルドされています。 - Python
This is useful if you have edited the module source file using an external editor and want to try out the new version without leaving the Python interpreter.例文帳に追加
この関数はモジュールのソースコードファイルを外部エディタで編集して、Python インタプリタから離れることなく新しいバージョンを試したい際に有効です。 - Python
Strictly speaking, the system-wide configuration file lives in the directory where the Distutils are installed; under Python 1.6and later on Unix, this is as shown.例文帳に追加
厳密に言えば、システム全体向けの設定ファイルは、 Distutilsがインストールされているディレクトリになります; Unixの Python 1.6 以降では、表の通りの場所になります。 - Python
If you use BBEdit to create your scripts you will want to tell it about the Python creator code so that you can simply double click on the saved file to launch it.例文帳に追加
BBEdit でスクリプトを作成しているなら、保存したファイルをダブルクリックして起動できるように、クリエータコードを Python に指定したいと考えるでしょう。 - Python
If a particular platform requires a special library on your platform,you can add it by editing the Setup file and running python setup.py build.例文帳に追加
特定のプラットフォームにおいて、プラットフォーム上の特殊なライブラリが必要な場合、 Setup ファイルを編集してpython setup.py build を実行すればライブラリを追加できます。 - Python
The Python byte code which this module takes as an input is defined in the file Include/opcode.h and used by the compiler and the interpreter.Example: Given the function myfunc:例文帳に追加
このモジュールが入力として受け取るPythonバイトコードはファイルInclude/opcode.hに定義されており、コンパイラとインタプリタが使用しています。 例: 関数myfuncを考えると: - Python
The default is to save the file with the PythonIDE as the creator, this means that you can open the file for editing by simply double-clicking on its icon.例文帳に追加
デフォルトでは、ファイルのPython IDE をクリエータコードにして保存します。 従って、ファイルのアイコンをダブルクリックするとファイルを編集用に開きます。 - Python
The file should be placed in the same directory as the LaTeX files for the document. The Python Documentation Special Interest Group has discussed a number of approaches to creating pretty-printed code displays and interactive sessions; see the Doc-SIG area on the Python Web site for more information on this topic.例文帳に追加
ファイルはドキュメントの LaTeX ファイルと同じディレクトリに置かねばなりません。 Python Documentation Special Interest Group では、コード表示や対話セッションに対して整形印刷を行うための数々のアプローチについて議論してきました; この話題に関する詳細は、Python Web サイトの Doc-SIG エリアを参照してください。 - Python
If this is installed as the system config file, it will affect all processing of any Python module distribution by any user on the current system.例文帳に追加
この内容のファイルがシステム全体用の設定ファイルとしてインストールされていれば、そのシステムの全てのユーザによる全ての Python モジュール配布物に対する処理に影響します。 - Python
(For the second case, you probably want to supply an installation base of/tmp/python.)You probably noticed the use of $HOME and $PLAT in the sample configuration file input.例文帳に追加
(二番目のケースでは、インストールベースを /tmp/python に指定しようと考えるでしょう。 )読者は、設定ファイル例で、入力値に $HOME や $PLAT を使っていることに気づいているかもしれませんね。 - Python
This library contains built-in modules (written in C) that provide access to system functionality such as file I/O that would otherwise be inaccessible to Python programmers, as well as modules written in Python that providestandardized solutions for many problems that occur in everydayprogramming.例文帳に追加
このライブラリには、例えばファイルI/O のように, Python プログラマが直接アクセスできないシステム機能へのアクセス機能を提供する (Cで書かれた) 組み込みモジュールや、日々のプログラミングで生じる多くの問題に標準的な解決策を提供するpure Python で書かれたモジュールが入っています。 - Python
If Python is built with universal newline support (the default) the file is opened as a text file, butlines may be terminated by any of 'n', the Unix end-of-lineconvention,'r', the Macintosh convention or 'rn', the Windowsconvention.例文帳に追加
Python が全改行文字サポートを行っている (標準ではしています) 場合,ファイルがテキストファイルで開かれますが、行末文字として Unix における慣行である 'n' 、Machintosh における慣行である 'r'、Windows における慣行である 'rn' のいずれを使うこともできます。 - Python
function with the difference that the first entry should refer to the script file to be executedrather than the executable hosting the Python interpreter.例文帳に追加
に渡したパラメタに似ていますが、最初の要素が Python インタプリタの宿主となっている実行形式の名前ではなく、実行されるスクリプト名を参照しなければならない点が違います。 - Python
The ConfigParser class implements a basic configuration file parser language which provides a structure similar to what you would find on Microsoft Windows INI files. You can use this to write Python programs which can be customized by end users easily.例文帳に追加
ConfigParser クラスは,Microsoft Windows の INI ファイルに見られるような構造をもつ,基礎的な設定ファイルを実装しています.このモジュールを使って,エンドユーザーが簡単にカスタマイズできるようなPython プログラムを書くことができます。 - Python
The Python interpreter can get its input from a number of sources:from a script passed to it as standard input or as program argument,typed in interactively, from a module source file, etc. 例文帳に追加
Python インタプリタは、標準入力や、プログラムの引数として与えられたスクリプト、対話的にタイプ入力された命令、モジュールのソースファイルなど、様々な入力源から入力を得ることができます。 - Python
Of course, you also have to ensure that these directories are in Python's module search path, such as by putting a .pth file in prefix.例文帳に追加
もちろん、prefix を .pth ファイルに入れるなどして、これらのディレクトリが Python のモジュール検索パス内に入るようにしなければなりません。 - Python
| 例文 |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|