「python integer」を含む例文一覧(35)

  • Integer specifying the handle of the Python DLL.Availability: Windows.
    Python DLLのハンドルを示す整数。 利用可能: Windows - Python
  • Convert a Python integer to a C short int.
    Python の整数型を、 C の short int 型に変換します。 - Python
  • Convert a Python integer to a plain C int.
    Python の整数型を、 C の int 型に変換します。 - Python
  • Convert a Python integer to a C long int.
    Python の整数型を、 C の long int 型に変換します。 - Python
  • Convert a Python integer to a C long long.
    Python の整数型を、 C の long long 型に変換します。 - Python
  • Convert a C long int to a Python integer object.
    C の long int を Python の整数オブジェクトに変換します。 - Python
  • The function's return value must be a Clong, which is a Python integer.
    関数の返り値はC long(Python整数である)です。 - Python
  • A NULL pointer will always be returned as the Python integer 0.
    NULL ポインタは常に Python 整数型の 0 になります。 - Python
  • The largest positive integer supported by Python's regular integer type.
    Pythonの整数型でサポートされる、最大の整数。 - Python
  • Convert a Python integer or long integer pylong to a Cvoid pointer.
    Python の整数型か長整数型を指す pylong を、 C のvoid ポインタに変換します。 - Python
  • Convert a plain C int to a Python integer object.
    通常の C の int を Python の整数オブジェクトに変換します。 - Python
  • This instance of PyTypeObject represents the Python long integer type.
    この PyTypeObject のインスタンスは Python 長整数型を表現します。 - Python
  • This subtype of PyObject represents a Python integer object.
    この PyObject のサブタイプは Python の整数型オブジェクトを表現します。 - Python
  • Convert a sequence of Unicode digits to a Python long integer value.
    Unicode の数字配列を Python の長整数型に変換します。 - Python
  • Convert a Python integer to a tiny int, stored in a C char.
    Python の整数型を、 C の char 型の小さな整数に変換します。 - Python
  • Convert a Python integer to a C unsigned int, without overflow checking.
    Python の整数型を、オーバフローチェックを行わずに、 C の unsigned int 型に変換します。 - Python
  • This instance of PyTypeObject represents the Python plain integer type.
    この PyTypeObject のインスタンスは 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
  • 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
  • This subtype of PyObject represents a Python long integer object.
    この PyObject のサブタイプは長整数型を表現します。 - Python
  • When packing pointer-sizedvalues, Python integer or long integer objects may be used.
    ポインタ型のサイズを持った値をパックする際には、Python 整数型 およびlong 整数型オブジェクトを使うことができます。 - Python
  • Return a C long long from a Python long integer.
    pylong の指す長整数値を、 C の long long 型表現で返します。 - Python
  • Convert a Python integer to a tiny int without overflow checking,stored in a C unsigned char.
    Python の整数型を、オーバフローチェックを行わずに、 C の unsigned char 型の小さな整数に変換します。 - 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
  • Return a C unsigned long from a Python long integer, without checking for overflow.New in version 2.3.
    Python 長整数値を、 オーバフローチェックを行わずにC の unsigned long 型表現で返します。 バージョン 2.3 で 新たに追加 された仕様です。 - Python
  • Return a C unsigned long long from a Python long integer, without checking for overflow.New in version 2.3.
    Python 長整数値を、 オーバフローチェックを行わずにC の unsigned long long 型表現で返します。 バージョン 2.3 で 新たに追加 された仕様です。 - Python
  • It operates on sound fragments consisting of signed integer samples 8, 16 or 32 bits wide, stored in Python strings. This is the same format as used by the
    このモジュールは、Python 文字列型中に入っている 8, 16, 32 ビットの符号付き整数でできた音声データ、すなわち - Python
  • The values stored for 'L' and 'I' items will be represented as Python long integers when retrieved, because Python's plain integer type cannot represent the full range of C's unsigned (long) integers.The module defines the following type:
    Python の通常の整数型では C の unsigned (long) 整数の最大範囲を表せないため、'L'と'I' で表現されている要素に入る値は Pythonでは長整数として表されます。 このモジュールでは次の型を定義しています: - Python
  • Caveat: On machines where C's long int type has more than32 bits (such as the DEC Alpha), it is possible to create plain Python integers that are longer than 32 bits.If such an integer is marshaled and read back in on a machine whereC's long int type has only 32 bits, a Python long integer object is returned instead.
    補足説明: C 言語の long int が (DEC Alpha のように) 32 ビットよりも長いビット長を持つ場合、32 ビットよりも長い Python 整数を作成することが可能です。 そのような整数が整列化された後、C 言語の long int のビット長が 32 ビットしかないマシン上で読み戻された場合、通常整数の代わりにPython 長整数が返されます。 - Python
  • Python fully supports mixed arithmetic: when a binary arithmetic operator has operands of different numeric types, the operand with the``narrower'' type is widened to that of the other, where plain integer is narrower than long integer is narrower than floating point is narrower than complex.Comparisons between numbers of mixed type use the same rule.
    Python は型混合の演算を完全にサポートします: ある 2 項演算子が互いに異なる数値型の被演算子を持つ場合、より ``制限された'' 型の被演算子は他方の型に合わせて広げられます。 - Python
  • Each restriction is either an integer (to select a count of lines), or a decimal fraction between0.0 and 1.0 inclusive (to select a percentage of lines), or a regular expression (to pattern match the standard name that is printed; as of Python 1.5b1, this uses the Perl-style regular expression syntaxdefined by the
    制限の指定は(行数を指定する)整数、(行のパーセンテージを指定する) 0.0 から 1.0 までの割合を指定する小数、(出力する standard name にマッチする)正規表現のいずれかを使っておこないます。 正規表現は Python 1.5b1 で導入された - Python
  • Otherwise, the argument may be a plain or long integer or a floating point number, and a floating point number with the same value (within Python's floating point precision) is returned.
    それ以外の場合、引数は通常整数、長整数、または浮動小数点数をとることができ、同じ値の浮動小数点数が (Python の浮動小数点精度で) 返されます。 - Python
  • In versions of Python prior to 2.4, octal and hexadecimal literals in the range just above the largest representable plain integer but below the largest unsigned32-bit number (on a machine using 32-bit arithmetic), 4294967296, were taken as the negative plain integer obtained by subtracting 4294967296from their unsigned value.
    バージョン 2.4 以前の Python では, 8 進および 16 進のリテラルのうち,通常の整数型として表現可能な値より大きく,かつ符号無しの 32-bit(32-bit 演算を使う計算機の場合) 整数で表現できる最大値,すなわち 4294967296 よりも小さな数は,リテラルを符号無し整数として表現した値から4294967296 を引いて得られる負の整数として扱っていました. - Python

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