Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 78 for float (0.025 sec.)
What's New In Python 3.1 — Python 3.6.5 ドキュメント 6928
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ',f' ) '1,234,567.89' これをサポートする型は int , float , complex , decimal.Decimal です。 ドットやら空白や ... です。完全に同じとなるものはありませんから、例えば式 float('1.1') は表現可能な最近接である十六進での 0x1.1999 ... buted by Antoine Pitrou.) decimal モジュールが二進 float から decimal オブジェクトを生成するメソッドをサポー ... 確ですが時に意外なことがあります: >>> Decimal . from_float ( 1.1 ) Decimal('1.1000000000000000888178419700125 ...
https://man.plustar.jp/python/whatsnew/3.1.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 6832
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... Type . register ( int ) PrintableType . register ( float ) PrintableType . register ( str ) クラスは ABC が ... Fraction ( 2 , 3 ) >>> b = Fraction ( 2 , 5 ) >>> float ( a ), float ( b ) (0.66666666666666663, 0.4000000 ... ger.) たくさんの浮動小数点数機能が追加されました。 float() 関数は文字列 nan を IEEE 754 非数 (Not A Number) ... 点数は文字列表現を返す hex() メソッドを持ち、また、 float.fromhex() メソッドが文字列から浮動小数点数に戻しま ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
文字列の変換と書式化 — Python 3.6.5 ドキュメント 6735
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... 外を発生させます。受け入れられる文字列は、 Python の float() コンストラクタが受け付ける文字列に準拠しますが、 ... して、ValueError を発生させ、 -1.0 を返します。 s が float に格納し切れないほど大きい値を表現していた場合、(例 ...
https://man.plustar.jp/python/c-api/conversion.html - [similar]
17.4. concurrent.futures -- 並列タスク実行 — Python 3.6.5 ドキュメント 6735
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... all to Executor.map() . timeout can be an int or a float. If timeout is not specified or None , there is no ... res.TimeoutError が送出されます。 timeout にはintかfloatを指定できます。 timeout が指定されていないか、 None ... res.TimeoutError が送出されます。 timeout にはintかfloatを指定できます。 timeout が指定されていないか、 None ...
https://man.plustar.jp/python/library/concurrent.futures.html - [similar]
16.4. argparse --- コマンドラインオプション、引数、サブコマンドのパーサー — Pyt... 6639
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... = int ) >>> parser . add_argument ( 'bar' , type = float ) >>> parser . print_help () usage: PROG [-h] [--f ... oo int] float positional arguments: float optional arguments: -h ... として読み込みます。しかし、コマンドラインの文字列は float , int など別の型として扱うべき事がよくあります。 a ... = 1 ) >>> parser_foo . add_argument ( 'y' , type = float ) >>> parser_foo . set_defaults ( func = foo ) >>> ...
https://man.plustar.jp/python/library/argparse.html - [similar]
21.26. xmlrpc.client --- XML-RPC クライアントアクセス — Python 3.6.5 ドキュメン... 6639
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... to 2147483647. Values get the <int> tag. double or float float . Values get the <double> tag. string str ar ... entation for numerics: i1 , i2 , i8 , biginteger , float and bigdecimal . See http://ws.apache.org/xmlrpc/t ...
https://man.plustar.jp/python/library/xmlrpc.client.html - [similar]
3. 形式ばらない Python の紹介 — Python 3.6.5 ドキュメント 6639
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python チュートリア ... 6 ) / 4 5.0 >>> 8 / 5 # division always returns a floating point number 1.6 整数 (例えば、 2 、 4 、 20 ) ... 型であり、小数部を持つ数 (例えば、 5.0 、 1.6 ) は float 型です。数値型については後のチュートリアルでさらに ... 求めます。: >>> 17 / 3 # classic division returns a float 5.666666666666667 >>> >>> 17 // 3 # floor division ... い別のローカルな変数が生成されてしまいます。 int と float に加え、 Python は Decimal や Fraction などの他の数 ...
https://man.plustar.jp/python/tutorial/introduction.html - [similar]
数値型プロトコル (number protocol) — Python 3.6.5 ドキュメント 6543
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python/C API リファ ... ython の式 int(o) と同じです。 PyObject * PyNumber_Float ( PyObject *o ) ¶ Return value: New reference. 成功 ... ものを返し、失敗すると NULL を返します。Python の式 float(o) と同じです。 PyObject * PyNumber_Index ( PyObje ...
https://man.plustar.jp/python/c-api/number.html - [similar]
Argument Clinic How-To — Python 3.6.5 ドキュメント 6543
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python HOWTO » Argu ... , accept={bytes, bytearray, str}, zeroes=True) 'f' float 'h' short 'H' unsigned_short(bitwise=True) 'i' int ... es. At their simplest, they can be string, int, or float literals: foo: str = "abc" bar: int = 123 bat: flo ... t unsigned int long unsigned int size_t Py_ssize_t float double DecodeFSDefault None of these take paramete ...
https://man.plustar.jp/python/howto/clinic.html - [similar]
16.16. ctypes --- Pythonのための外部関数ライブラリ — Python 3.6.5 ドキュメント 6543
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ze_t int c_ssize_t ssize_t または Py_ssize_t int c_float float 浮動小数点数 c_double double 浮動小数点数 c_ ... を使う方がより高速です。: >>> i = c_int () >>> f = c_float () >>> s = create_string_buffer ( b ' \000 ' * 32 ... ): ... _fields_ = [( "a" , c_int ), ... ( "b" , c_float ), ... ( "point_array" , POINT * 4 )] >>> >>> prin ... トフォームでは c_double の別名です。 class ctypes. c_float ¶ C float データ型を表します。コンストラクタはオプ ...
https://man.plustar.jp/python/library/ctypes.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT