「python and」を含む例文一覧(418)

<前へ 1 2 3 4 5 6 7 8 9 次へ>
  • Note that there are many examples of doctests in the standard Python test suite and libraries.
    doctest の例は、標準の Python テストスイートやライブラリ中に沢山あります。 - Python
  • The various types of terminal symbols are defined in the C header file Include/token.h and the Python module
    終端記号のいろいろな型は、CヘッダファイルInclude/token.hとPythonモジュール - Python
  • The Python IDE (Integrated Development Environment) is a separate application that acts as a text editor for your Python code,a class browser, a graphical debugger, and more. Subsections
    Python IDE(統合開発環境) は独立したアプリケーションで、Python コードのテキストエディタや、クラスブラウザ、グラフィカルデバッガなどとして動作します。 - Python
  • The compiler contains libraries to generate an abstract syntax tree from Python source code and to generate Python bytecode from the tree. The
    compiler はPython のソースコードから抽象的な構文木を生成し、その構文木からPython バイトコードを生成するライブラリをそなえています。 - Python
  • Introduction The Application Programmer's Interface to Python gives C and C++ programmers access to the Python interpreter at a variety of levels.
    Python のアプリケーションプログラマ用インタフェース (Application Programmer's Interface, API) は、Python インタプリタに対する様々なレベルでのアクセス手段をC や C++ のプログラマに提供しています。 - 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
  • This document describes the Python Distribution Utilities(``Distutils'') from the end-user's point-of-view, describing how to extend the capabilities of a standard Python installation by building and installing third-party Python modules and extensions.
    このドキュメントでは、 Python モジュール配布ユーティリティ(Python Distribution Utilities, ``Distutils'') について、 エンドユーザの視点に立ち、サードパーティ製のモジュールや拡張モジュールの構築やインストールによって標準の Python に機能を追加する方法について述べます。 - Python
  • Python supports modules and packages, which encouragesprogram modularity and code reuse.
    Python は、プログラムのモジュール化や再利用を助けるモジュールとパッケージをサポートします。 - Python
  • module that allows reading and writing of the preferences for the Python interpreter.
    モジュールを特化したものです。 - Python
  • This was never intentional and is no longer available in Python 2.0 and later.
    これは本来の仕様ではなく、Python 2.0以降では使用することはできません。 - Python
  • Python distinguishes between integers, floating point numbers, and complex numbers:
    Python は整数、浮動小数点数、複素数の間で区別を行っています: - Python
  • Encodes a Unicode objects using UTF-8 and returns the result as Python string object.
    UTF-8 で Unicode オブジェクトをエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
  • Encodes a Unicode objects using Unicode-Escape and returns the result as Python string object.
    Unicode-Escape で Unicode オブジェクトをエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
  • Encodes a Unicode objects using Latin-1 and returns the result as Python string object.
    Latin-1 で Unicode オブジェクトをエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
  • Encodes a Unicode objects using ASCII and returns the result as Python string object.
    ASCII で Unicode オブジェクトをエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
  • Encodes a Unicode objects using MBCS and returns the result as Python string object.
    MBCS で Unicode オブジェクトをエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
  • Perform a function call to a Python interface routine using the converted values, and
    変換された値を使って Python インタフェースルーチンの関数呼び出しを行い、 - Python
  • The types short int, unsigned int, unsignedlong long, and boolean all map to Python integer objects.
    short int 、 unsigned int 、 unsignedlong long 、および boolean 型は、全て Python 整数オブジェクトに対応付けられます。 - Python
  • The cPickle module supports serialization andde-serialization of Python objects, providing an interface and functionality nearly identical to the
    cPickle モジュールは Python オブジェクトの直列化および非直列化をサポートし、 - Python
  • The manual for developers and packagers of Python modules.
    このマニュアルはPython モジュールの開発者およびパッケージ担当に向けたものです。 - Python
  • Read size bytes from the audio input and return them as a Python string.
    オーディオ入力から size バイトを読みだし、 Python 文字列型にして返します。 - Python
  • (VERSION NOTE: described here is what is implemented in Python 2.2.1 and later.
    (VERSION NOTE: ここに書かれている内容は、Python 2.2.1 以降での実装に関するものです。 - Python
  • The C implementation of Python has historically acceptedmultiple parameters and implicitly joined them into a tuple; this no longer works in Python 2.0.
    かつての Python の C 実装では、複数パラメタを受理し、非明示的にそれらをタプルに結合していました。 - Python
  • InPython versions before 2.3, x had to be a string of length 1.In Python 2.3 and beyond, x may be a string of any length.
    バージョン 2.3 以前の Python では、x は長さ 1 の文字列でした。 Python 2.3 以降では、x はどの長さでもかまいません。 - Python
  • All float and double values are represented by Python floating pointnumbers.In most cases, Python integers are also allowed.
    全ての浮動小数点数と倍精度浮動小数点数はPythonの浮動小数点数に相当します。 たいていの場合、Pythonの整数も使えます。 - Python
  • Since all Python object types are treated the same way by the Python language in most situations (e.g., assignments, scope rules,and argument passing), it is only fitting that they should be represented by a single C type.
    Python 言語は、全ての Python オブジェクト型をほとんどの状況 (例えば代入、スコープ規則 (scope rule)、引数渡し) で同様に扱います。 - Python
  • The new modules may be either 100%-pure Python, or may be extension modules written in C, or may be collections of Python packages which includemodules coded in both Python and C.This package is discussed in two separate documents which are included in the Python documentation package.
    新規のモジュールは 100%-pure Python でも、C で書かれた拡張モジュールでも、あるいは Python と C 両方のコードが入っているモジュールからなるPython パッケージでもかまいません。 このパッケージは、Python ドキュメンテーション パッケージに含まれているこれとは別の 2つのドキュメントで詳しく説明されています。 - Python
  • Encodes a Unicode objects using Raw-Unicode-Escape and returns the result as Python string object.
    Raw-Unicode-Escape で Unicode オブジェクトをエンコードし、結果を Python 文字列オブジェクトとして返します。 - Python
  • Tester was feeble,and in practice most serious Python testing frameworks build on the
    Tester は非力であり、実際のところ、もっときちんとした Python のテストフレームワークが - Python
  • Convert samples in the audio fragment to u-LAW encoding and return this as a Python string.
    音声データの各サンプルを u-LAW 符号でエンコードし、Python文字列として返します。 - Python
  • A note on version compatibility: the Compile and CommandCompiler are new in Python 2.2.
    バージョン間の互換性についての注意: CompileとCommandCompilerはPython 2.2で導入されました。 - Python
  • A Distribution describes how to build, install and package up a Python software package.
    DistributionはPythonソフトウェアパッケージをどのようにビルド、インストール、パッケージするかを定義する。 - Python
  • Programmers may find this useful when debugging version conflicts between Python and extension modules.
    Pythonと拡張モジュール間の不整合をデバッグする場合などに利用できます。 - Python
  • Parse and compile the Python source code in str, returning the resulting code object.
    str内のPythonソースコードをパースしてコンパイルし、作られたコードオブジェクトを返します。 - Python
  • It's not necessarily binary, though, because it might contain only Python source code and/or byte-code; and we don't call it a package, because that word is already spoken for in Python.
    配布物には、 Python ソースコード、かつ/またはバイトコードが入るからです; また、我々はパッケージという呼び方もしません。 - Python
  • Most of the Python documentation, both the ``official'' documentation and publishedbooks, describe only how Python is used on these systems, causing confusion for the new user of MacPython-OS9.
    この章では、簡単な入門編として Macintosh 上で Python を具体的にどう使うのかを解説していきます。 - Python
  • Three types of modules concern ushere: pure Python modules, extension modules, and packages.
    ここでは、三種類のモジュール: pure Python モジュール、拡張モジュール、パッケージが関わってきます。 - Python
  • This location varies by platform and by how you built/installed Python itself.
    この場所は、プラットフォームや、Python 自体をどのようにビルド/インストールしたかで変わります。 - Python
  • Load and initialize a module implemented as a Python source file and return its module object.
    Pythonソースファイルとして実装されているモジュールをロードして初期化し、モジュールオブジェクトを返します。 - Python
  • Other uses are also imaginable.Fortunately, the Python interpreter is easily called recursively, and there is a standard interface to call a Python function.
    もちろん、他の用途も考えられます。 幸運なことに、Python インタプリタは簡単に再帰呼び出しでき、Python 関数を呼び出すための標準インタフェースもあります。 - Python
  • Simple AppleEvent data types (integer,text, float) are returned as their obvious Python counterparts.Apple Event lists are returned as Python lists, and the list elements are recursively unpacked.
    単純なAppleEventデータ型(整数、テキスト、浮動少数点数)の、対応するPython型が返されます。 Apple EventリストはPythonリストとして返され、リストの要素は再帰的にアンパックされます。 - Python
  • The primary purpose for this interface is to allow Python code to edit the parse tree of a Python expression and create executable code from this.
    このインターフェイスの第一の目的は、PythonコードからPythonの式の解析木を編集したり、これから実行可能なコードを作成したりできるようにすることです。 - Python
  • Note that this is new as of Python 1.5.2(a2); earlier versions, up to Python 1.5.1 and 1.5.2a1,would add 1900 to year values below 1900.
    この仕様は Python 1.5.2(a2) から新たに追加された機能であることに注意してください;それ以前のバージョン、すなわち Python 1.5.1 および 1.5.2a1 では、1900以下の年に対して 1900 を足します。 - 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
  • describes how to add new extensions to Python and how to embed it in other applications.
    と題されたマニュアルには、Pythonに新しい機能を追加する方法と、他のアプリケーションに Python を組み込む方法が書かれています。 - Python
  • describes the high-level picture of how to write a Python extension module, and the
    では、Python 拡張モジュールを書くための高レベルな様式について述べています。 また、 - Python
  • Note:The way new types are defined changed dramatically (and for the better) in Python 2.2.
    注意:Python 2.2 から、新しい型を定義する方法がかなり変わって(よくなって) います。 - Python
  • object.someValue is not required to work, and may raise an AttributeError.The Python DOM API, however, does require that normal attribute access work.
    しかしながら、Python DOM API では、通常の属性アクセスが動作することが必須です。 - Python
  • Python applications should normally find no need to invoke these functions, and should use
    Python アプリケーションでは、通常これらの関数を呼び出す必要はないはずで、代わりに - Python
  • All string and character arguments are represented by Python strings,for instance,winopen('Hi There!')androtate(900, 'z').
    全ての文字列と文字の引数は、Pythonの文字列に相当します。 例えば、winopen('Hi There!')とrotate(900, 'z')。 - Python
<前へ 1 2 3 4 5 6 7 8 9 次へ>

例文データの著作権について