1153万例文収録!

「python class」に関連した英語例文の一覧と使い方 - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > python classに関連した英語例文

セーフサーチ:オン

不適切な検索結果を除外する

不適切な検索結果を除外しない

セーフサーチについて

python classの部分一致の例文一覧と使い方

該当件数 : 31



例文

18.7 pyclbr -- Python class browser support 例文帳に追加

18.7 pyclbr -- Python クラスブラウザーサポート - Python

Supports information extraction for a Python class browser.例文帳に追加

Pythonクラスデスクリプタの情報抽出サポート - Python

For Python documentation, two classes are used: the manual class and the howto class.例文帳に追加

Python ドキュメントの場合、二つのクラス:manual クラスと howto クラスを使います。 - Python

Python supports weak references as first-class objects. 例文帳に追加

Python は 弱参照 を第一級オブジェクト (first-class object)としてサポートします。 - Python

例文

There is a Python class wrapper, independent of Tkinter.wxWindows is much richer in widgets than 例文帳に追加

Tkinterに依存しない Python クラスブラウザがあります。 wxWindowsは - Python


例文

Class for creating ZIP archives containing Python libraries. 例文帳に追加

Python ライブラリを含む ZIP アーカイブを生成するためのクラスです。 - Python

Closely emulate the behavior of the interactive Python interpreter.This class builds on InteractiveInterpreter and addsprompting using the familiar sys. 例文帳に追加

対話的なPythonインタプリタの振る舞いを厳密にエミュレートします。 - Python

The base class for exceptions that can occur outside the Python system: IOError,OSError.例文帳に追加

Python システムの外部で起こっているはずの例外: IOError、OSError の基底クラスです。 - Python

A real Python list object used to store the contents of the UserList class.例文帳に追加

UserListクラスの内容を保存するために使われる実際の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

例文

Earlier versions of Python did not attempt to create instances of the derived class.例文帳に追加

Pythonの初期のバージョンでは、導出クラスのインスタンスを作成しようとはしません。 - Python

A real Python string or Unicode object used to store the content of the UserString class.例文帳に追加

UserStringクラスの内容を保存するために使われる実際のPython文字列またはユニコードオブジェクト。 - Python

AppleScript classes are also implemented as Python classes, as are comparisons and all the other thingies.The main Python class implementing the verbs also allows access to the properties and elements declared in the AppleScript class "application".例文帳に追加

また AppleScript クラスは Python クラス、そして類事物その他のもろもろの物として実装されています。 変数を実装する主要な Python クラスは、さらに AppleScriptクラス "application" で宣言されたプロパティおよび要素へのアクセスを許可します。 - Python

The StreamReader class is a subclass of Codec and defines the following methods which every stream reader must define inorder to be compatible to the Python codec registry.例文帳に追加

StreamReader クラスは Codec のサブクラスで、以下のメソッドを定義しています。 - Python

The StreamWriter class is a subclass of Codec and defines the following methods which every stream writer must define inorder to be compatible to the Python codec registry.例文帳に追加

StreamWriter クラスは Codec のサブクラスで、以下のメソッドを定義しています。 - Python

The set of names of this class defined by Python may be extended in future versions.See section3.3, ``Special method names.''例文帳に追加

この種の名前のうち、Python で定義されている名前のセットは、将来のバージョンで拡張される可能性があります。 - Python

Because this class is implemented in pure Python, it is not thread safe and may require locks between calls.例文帳に追加

このクラスは、Python だけで実装されているので、スレッドセーフではなく、呼び出しと呼び出しの間にロックが必要です。 - Python

This class may be initialized from any Python value; the instancereturned depends only on its truth value. 例文帳に追加

このクラスは全てのPythonの値で初期化することができ、生成されるインスタンスは指定した値の真偽値によってのみ決まります。 - Python

As an example of subclassing, the random module provides the WichmannHill class which implements an alternative generator in pure Python.例文帳に追加

サブクラス化の例として、random モジュールは WichmannHill クラスを提供します。 このクラスは Python だけで書かれた代替生成器を実装しています。 - Python

See also TimPeters' introduction to the ``Algorithms'' chapter in the Python Cookbook, published by O'Reilly.The module defines the following public class:例文帳に追加

詳しくは、O'Reilly の Python Cookbook、``Algorithms'' の章にある TimPeters が書いた解説を参照してください。 このモジュールには次のパブリック・クラスが定義されています。 - Python

The gettext module provides internationalization (I18N) and localization (L10N) services for your Python modules and applications.It supports both the GNU gettext message catalog API and a higher level, class-based API that may be more appropriate for Python files.例文帳に追加

gettext モジュールは、 Python によるモジュールやアプリケーションの国際化 (I18N, I-nternationalizatio-N) および地域化 (L10N, L-ocalizatio-N) サービスを提供します。 このモジュールは GNU gettext メッセージカタログへの API と、より高レベルで Python ファイルに適しているクラスに基づいた API の両方をサポートしてます。 - Python

Since the Warning class is derived from the built-inException class, to turn a warning into an error we simplyraise category(message).The warnings filter is initialized by -W options passed to the Python interpreter command line.例文帳に追加

Warning クラスは組み込みの Exception クラスから導出されているので、警告をエラーに変えるには単にcategory(message) を raise します。 警告フィルタは Python インタプリタのコマンドラインに渡される-W オプションで初期化されます。 - Python

It depends on the availability of thread support inPython.The Queue module defines the following class and exception: 例文帳に追加

これはPythonのスレッドサポートの状況に依存します。 Queueモジュールは以下のクラスと例外を定義します: - Python

A simple``wrapper'' class may be created in Python to hide the use of ASTobjects.The parser module defines functions for a few distinctpurposes. 例文帳に追加

ASTオブジェクトを使っていることを隠すために、簡単な``ラッパー''クラスをPythonで作ることができます。 parserモジュールは二、三の別々の目的のために関数を定義しています。 - Python

Normally,the names used in Python programs are automatically interned, and the dictionaries used to hold module, class or instance attributes have interned keys.例文帳に追加

通常、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 class provides a backward compatible way to reproduce results from earlier versions of Python which used the Wichmann-Hill algorithm as the core generator.Changed in version 2.3:Substituted MersenneTwister for Wichmann-Hill.例文帳に追加

このクラスは、乱数生成器に Wichmann-Hill 法を使っていた古いバージョンの Python から得られた結果を再現するための、後方互換の手段になります。 バージョン 2.3 で 変更 された仕様:MersenneTwister を Wichmann-Hill の代わりに使う - Python

Python's Thread class supports a subset of the behavior of Java's Thread class;currently, there are no priorities, no thread groups, and threads cannot be destroyed, stopped, suspended, resumed, or interrupted.例文帳に追加

Python の Thread クラスがサポートしているのは Java の Thread クラスの挙動のサブセットにすぎません; 現状では、優先度 (priority)やスレッドグループがなく、スレッドの破壊 (destroy)、中断 (stop)、一時停止 (suspend)、復帰 (resume)、割り込み (interrupt) は行えません。 - Python

Until this manualundergoes extensive revision, it must now be taken as authoritativeonly regarding ``classic classes'', that are still the default, for compatibility purposes, in Python 2.2 and 2.3.例文帳に追加

このマニュアルに大幅な改訂が施されるまでは、このドキュメントでの記述は、``旧クラス型 (classic class)'' に関してのみ信頼できる内容と考えねばなりません。 Python 2.2 および 2.3 では、互換性のためにクラシックなクラスがまだデフォルトとなっています。 - Python

A subclass that wants to override this variable should probably start with the value from the base class and concatenate additional forbidden functions -- when new dangerousbuilt-in functions are added to Python, they will also be added to this module.)例文帳に追加

この変数をオーバライドしたいサブクラスは、基本クラスからの値から始めて、追加した許されない関数を連結していかなければなりません - 危険な関数が新しく Python に追加された時は、それらも、このモジュールに追加します。 - Python

例文

Return in a single string any lines of comments immediately preceding the object's source code (for a class, function, or method), or at the top of the Python source file (if the object is a module).例文帳に追加

オブジェクトがクラス・関数・メソッドの何れかの場合は、オブジェクトのソースコードの直後にあるコメント行(複数行)を、単一の文字列として返します。 オブジェクトがモジュールの場合、ソースファイルの先頭にあるコメントを返します。 - 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会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

©2026 GRAS Group, Inc.RSS