pythonを含む例文一覧と使い方
該当件数 : 1381件
This instance of PyTypeObject represents the Python filetype. 例文帳に追加
この PyTypeObject のインスタンスは Python のファイル型を表現します。 このオブジェクトは types.FileType として - Python
This section describes Python type objects and the singleton objectNone. 例文帳に追加
この節では、Python の型オブジェクトと単量子 (singleton) オブジェクト None について述べます。 - Python
This instance of PyTypeObject represents the Python plain integer type.例文帳に追加
この PyTypeObject のインスタンスは Python の (長整数でない) 整数型を表現します。 - Python
Convert a Python integer or long integer pylong to a Cvoid pointer. 例文帳に追加
Python の整数型か長整数型を指す pylong を、 C のvoid ポインタに変換します。 - Python
This instance of PyTypeObject represents the Python method type.例文帳に追加
この PyTypeObject のインスタンスは Python のメソッドオブジェクト型を表現します。 このオブジェクトは、types.MethodType - Python
Note:Beginning in 2.3 some Unix versions of Python may have a bsddb185module. 例文帳に追加
注意:2.3以降のUnix版Pythonには、bsddb185モジュールが存在する場合があります。 - Python
The cgitb module provides a special exception handler for Python scripts.例文帳に追加
cgitb モジュールでは、Python スクリプトのための特殊な例外処理を提供します。 - Python
Closely emulate the behavior of the interactive Python interpreter.This class builds on InteractiveInterpreter and addsprompting using the familiar sys. 例文帳に追加
対話的なPythonインタプリタの振る舞いを厳密にエミュレートします。 - Python
Note that there are many examples of doctests in the standard Python test suite and libraries.例文帳に追加
doctest の例は、標準の Python テストスイートやライブラリ中に沢山あります。 - Python
The base class for exceptions that can occur outside the Python system: IOError,OSError.例文帳に追加
Python システムの外部で起こっているはずの例外: IOError、OSError の基底クラスです。 - 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
Use pythonw instead of python to start such scripts.例文帳に追加
GUIを持ったスクリプトを実行するには python の代わりにpythonw を使ってください。 - Python
Execute the Python code contained in the file filename in the restricted environment.例文帳に追加
ファイル filename に含まれた Python コードを制限された環境で実行します。 - Python
Produce a string that is suitable as Unicode literal in Python source code例文帳に追加
Python ソースコードにおける Unicode リテラルとして適切な文字列を生成します。 - Python
The stacklevelargument can be used by wrapper functions written in Python, like this:例文帳に追加
引数 stacklevelは Python でラッパ関数を書く際に利用することができます。 - Python
Ensure that the current thread is ready to call the PythonC API regardless of the current state of Python, or of itsthread lock. 例文帳に追加
Pythonの状態やスレッドロックに関わらず、実行中スレッドでPython C APIの呼び出しが可能となるようにします。 - 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
Python distinguishes between integers, floating point numbers, and complex numbers:例文帳に追加
Python は整数、浮動小数点数、複素数の間で区別を行っています: - Python
Convert a Python integer to a C unsigned short int, without overflow checking.例文帳に追加
Python の整数型を、オーバフローチェックを行わずに、 C の unsigned short int 型に変換します。 - Python
Convert a Python integer to a C unsigned long without overflow checking.例文帳に追加
Python の整数型を、オーバフローチェックを行わずに、 C の unsigned long int 型に変換します。 - Python
Convert a Python integer to a C unsigned long longwithout overflow checking. 例文帳に追加
Python の整数型を、オーバフローチェックを行わずに、 C の unsigned long long 型に変換します。 - Python
7.2.2 Boolean Objects Booleans in Python are implemented as a subclass of integers. 例文帳に追加
7.2.2 Bool 型オブジェクト Python の Bool 型は整数のサブクラスとして実装されています。 - 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
Keyed-Hashing for Message Authentication (HMAC)implementation for Python. 例文帳に追加
Python で実装された、メッセージ認証のための鍵付きハッシュ化 (HMAC: Keyed-Hashing for Message Authentication)アルゴリズム。 - Python
Decimals interact well with much of the rest of python. 例文帳に追加
Decimal 型数値はほとんどの場面で Python の他の機能とうまくやりとりできます。 - Python
Just as writing Python extension modules is a bit more complicated than writing pure Python modules, describing them to the Distutils is a bit more complicated.例文帳に追加
pure Python モジュールを書くより Python 拡張モジュールを書く方がちょっとだけ複雑なように、 Distutils での拡張モジュールに関する記述もちょっと複雑です。 - Python
Optional argument package is a Python package or the name of a Python package whose directory should be used as the base directory for module-relative filenames.例文帳に追加
オプション引数 package には、 Python パッケージを指定するか、モジュール相対のファイル名の場合には相対の基準ディレクトリとなるPython パッケージの名前を指定します。 - Python
Note that the Python name for the exception object isspam.error. 例文帳に追加
Python レベルでの例外オブジェクトの名前は spam.errorになることに注意してください。 - Python
This chapter explains the meaning of the elements of expressions in Python.例文帳に追加
この章では、Python の式における個々の要素の意味について解説します。 - Python
The Python-specific markup is intended to extend the structure provided by standard LaTeX document classes to support additional information specific to Python.例文帳に追加
Python 特有のマークアップは、標準の LaTeX ドキュメントクラスで提供されている構造を拡張し、Python 特有の情報を書けるようサポートするためのものです。 - Python
When embedding Python, the interface code does: 例文帳に追加
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 Tkinter module (``Tk interface'') is the standard Python interface to the Tk GUI toolkit.例文帳に追加
Tkinter モジュール (``Tk インタフェース'') は、Tk GUI ツールキットに対する標準の Python インタフェースです。 - Python
A real Python list object used to store the contents of the UserList class.例文帳に追加
UserListクラスの内容を保存するために使われる実際のPythonリストオブジェクト。 - Python
This function returns a Python object representation of the data in the AppleEvent descriptor x.例文帳に追加
この関数は、Apple Eventディスクリプタ x のデータの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 dis module supports the analysis of Python byte code by disassembling it.例文帳に追加
disモジュールはPythonバイトコードを逆アセンブルしてバイトコードの解析を助けます。 - Python
The manual for developers and packagers of Python modules.例文帳に追加
このマニュアルはPython モジュールの開発者およびパッケージ担当に向けたものです。 - Python
The proposal which described this feature for inclusion in the Python standard library.例文帳に追加
本機能を Python 標準ライブラリに含めるよう記述している提案書。 - Python
JESC: Japanese-English Subtitle Corpus映画・海外ドラマ英語字幕翻訳辞書のコンテンツは、特に明示されている場合を除いて、次のライセンスに従います: Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、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会員(無料)になると
|
Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)