| 例文 |
python stringの部分一致の例文一覧と使い方
該当件数 : 74件
For the tail part, it uses the empty string (on Macintosh or Windows) or it uses first lib/python2.4/site-packages and thenlib/site-python (on Unix).例文帳に追加
後部には、(MacintoshやWindowsでは)空文字列を使用し、(Unixでは)最初にlib/python2.4/site-packagesを使ってからlib/site-pythonを使います。 - Python
A string giving the name of the executable binary for the Python interpreter, on systems where this makes sense.例文帳に追加
Pythonインタープリタの実行ファイルの名前を示す文字列。 このような名前が意味を持つシステムでは利用可能。 - Python
Most of the standard escapes supported by Python string literals are also accepted by the regular expression parser:例文帳に追加
+ Python 文字列リテラルによってサポートされている標準エスケープのほとんども、正規表現パーザに認識されます: - Python
code must be a string containing one or more lines of Python code,which will be executed in the restricted environment. 例文帳に追加
code は、1行以上のPython コードを含む文字列でなければなりません。 そして制限された環境で実行されます。 - Python
The fpformat module defines functions for dealing with floating point numbers representations in 100% pure Python.例文帳に追加
注意:This module is unneeded: everything here couldbe done via the % string interpolation operator. fpformat モジュールは浮動小数点数の表示を 100% 純粋に Python だけで行うための関数を定義しています。 - Python
A string giving the site-specific directory prefix where the platform independent Python files are installed; by default, this is the string '/usr/local'.例文帳に追加
サイト固有の、プラットフォームに依存しないファイルを格納するディレクトリを示す文字列。 デフォルトでは'/usr/local'になります。 - Python
linejunk: A function that accepts a single string argument, and returns true if the string is junk, or false if not. The default is (None), starting with Python 2.3.例文帳に追加
linejunk: string型の引数ひとつを受け取る関数で、文字列がjunkか否かによってtrueを(違うときにはtrueを)返します。 Python2.3以降、デフォルトでは(None)になります。 - Python
(In compatibility note: in the original Python 1.5release, if the tuple was one element long, a string would be returned instead.例文帳に追加
(非互換性ノート:オリジナルの Python 1.5 リリースでは、たとえタプルが一要素長であっても、その代わりに文字列を返すことはありません。 - Python
If the command was executed using the -c command line option to the interpreter, argv[0] is set to the string '-c'.例文帳に追加
コマンドライン引数に-cを付けてPythonを起動した場合、argv[0]は文字列'-c'となります。 - Python
Raised when a specified range of text does not fit into a string. This is not known to be used in the Python DOM implementations, but may be received from DOM implementations not written in Python.例文帳に追加
指定された範囲のテキストが文字列に収まらない場合に送出されます。 この例外は Python の DOM 実装で使われるかどうかは判っていませんが、Python で書かれていない DOM 実装から送出される場合があります。 - Python
A string containing the version number of the Python interpreterplus additional information on the build number and compiler used.It has a value of the form 'version(#build_number, build_date, build_time)[compiler]'. 例文帳に追加
Pythonインタープリタのバージョンとビルド番号・使用コンパイラなどの情報を示す文字列で、'バージョン(#ビルド番号,ビルド日付, ビルド時間)[コンパイラ]'となります。 - Python
Inside a character range, b represents the backspace character, for compatibility with Python's string literals.例文帳に追加
文字の範囲の中では、b は、Python の文字列リテラルと互換性を持たせるために、後退(backspace)文字を表します。 - Python
Write is passed a Python string containing audio samples to be played.If there is enough buffer space free it will immediately return,otherwise it will block. 例文帳に追加
パラメータとしてオーディオサンプルをPython文字列を受け取り、再生します。 もし十分なバッファの空きがあればすぐに制御が戻り、そうでないならブロックされます。 - Python
Using this is more portable than using a sequence of the two string types constructedelsewhere since it only contains UnicodeType if it has been built in the running version of Python.例文帳に追加
UnicodeTypeは実行中の版のPythonに含まれている場合にだけ含まれるので、2つの文字列型のシーケンスを使うよりこれを使う方が移植性が高くなります。 - Python
These objects look very similar tostring objects at the Python programming level: they support slicing,indexing, concatenation, and some other standard string operations.例文帳に追加
バッファオブジェクトは、 Python プログラミングのレベルからは文字列オブジェクトと非常によく似ているように見えます:スライス、インデクス指定、結合、その他標準の文字列操作をサポートしています。 - Python
The Python string must not contain embedded NUL bytes; if it does, a TypeError exception is raised.Unicode objects are converted to C strings using the default encoding.例文帳に追加
Python の文字列型は、NUL バイトが途中に埋め込まれていてはなりません; もし埋め込まれていればTypeError 例外を送出します。 Unicode オブジェクトはデフォルトエンコーディングを使ってC 文字列に変換されます。 - Python
Raised when the interpreter finds an internal error, but the situation does not look so serious to cause it to abandon all hope.The associated value is a string indicating what went wrong (in low-level terms).You should report this to the author or maintainer of your Python interpreter.例文帳に追加
インタプリタが内部エラーを発見したが、その状況は全ての望みを棄てさせるほど深刻ではないように思われる場合に送出されます。 - Python
(A``quote'' is the character used to open the string, i.e. either' or ".)Unless an "r" or "R" prefix is present, escapesequences in strings are interpreted according to rules similarto those used by Standard C. The recognized escape sequences are: 例文帳に追加
"r" または "R" 接頭文字がつかないかぎり、文字列中のエスケープシーケンスは標準 C で使われているのと同様の法則にしたがって解釈されます。 以下に Python で認識されるエスケープシーケンスを示します: - Python
Note that any Python object references which are provided to the caller are borrowed references; do not decrement their reference count!Additional arguments passed to these functions must be addresses of variables whose type is determined by the format string; these are used to store values from the input tuple.例文帳に追加
呼び出し側に提供される Python オブジェクトの参照は全て 借りた (borrowed) ものです; オブジェクトの参照カウントをデクリメントしてはなりません!以下の関数に渡す補助引数 (additional argument) は、書式化文字列から決定される型へのアドレスでなければなりません; 補助引数に指定したアドレスは、タプルから入力された値を保存するために使います。 - 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
If the script directory is not available (e.g. if the interpreter is invoked interactively or if the script is read from standard input), path[0] is the empty string, which directsPython to search modules in the current directory first.例文帳に追加
スクリプトのディレクトリがない(インタープリタで対話セッションで起動された時や、スクリプトを標準入力から読み込む場合など)場合、path[0]には空文字列となり、Pythonはカレントディレクトリからモジュールの検索を開始します。 - Python
It is possible to pass Python long integers where integers are requested; however no proper range checking is done -- the most significant bits are silently truncated when the receiving field is too small to receive the value (actually, the semantics are inherited from downcasts in C -- your mileage may vary).A few other characters have a meaning in a format string.例文帳に追加
Python 整数型を要求している場所に Python 長整数型を渡すのは可能です; しかしながら、適切な値域チェックはまったく行われません --値を受け取るためのフィールドが、値全てを受け取るには小さすぎる場合、上桁のビット群は暗黙のうちに切り詰められます (実際のところ、このセマンティクスは C のダウンキャスト (downcast) から継承しています -- その恩恵は人それぞれかもしれませんが)。 その他、書式化文字列において意味を持つ文字がいくつかあります。 - Python
AppleEvent record descriptors are returned as Pythondictionaries, with 4-character string keys and elements recursivelyunpacked.The optional formodulename argument is used by the stub packages generated by gensuitemodule, and ensures that the OSA classes for object specifiers are looked up in the correct module.例文帳に追加
AppleEventレコードディスクリプタが、再帰的にアンパックされた、型の4文字キーと要素を持つPython辞書として返されます。 オプションの formodulename 引数は gensuitemodule より作成されるスタブパッケージにより利用され、オブジェクト指定子のための OSA クラスをモジュールの中で見つけられることを保証します。 - Python
Some of them don't convert from Unicode strings to byte strings, but instead use the property of the Pythoncodecs machinery that any bijective function with one argument can be considered as an encoding.For the codecs listed below, the result in the ``encoding'' direction is always a byte string.例文帳に追加
これらの codec の中にはUnicode 文字列からバイト文字列への変換を行わず、むしろ単一の引数をもつ全写像関数はエンコーディングとみなせるというPython codec の性質を利用したものもあります。 以下に列挙した codec では、``エンコード'' 方向の結果は常にバイト文字列方向です。 - 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会員(無料)になると
|