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

  • Convert a Python integer to a C long long.
    Python の整数型を、 C の long long 型に変換します。 - Python
  • Convert a Python integer to a C long int.
    Python の整数型を、 C の long int 型に変換します。 - Python
  • Convert a C long int to a Python integer object.
    C の long int を Python の整数オブジェクトに変換します。 - Python
  • Return a C long long from a Python long integer.
    pylong の指す長整数値を、 C の long long 型表現で返します。 - Python
  • The function's return value must be a Clong, which is a Python integer.
    関数の返り値はC long(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 long integer type.
    この PyTypeObject のインスタンスは Python 長整数型を表現します。 - Python
  • Convert a Python integer to a C unsigned long longwithout overflow checking.
    Python の整数型を、オーバフローチェックを行わずに、 C の unsigned long long 型に変換します。 - Python
  • Convert a sequence of Unicode digits to a Python long integer value.
    Unicode の数字配列を Python の長整数型に変換します。 - Python
  • Convert a Python integer to a C unsigned long without overflow checking.
    Python の整数型を、オーバフローチェックを行わずに、 C の unsigned long int 型に変換します。 - 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 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
  • 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
  • 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
  • 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
  • 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
  • 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

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