Python 3.6.5 ドキュメント 検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 38 for Decimal (0.056 sec.)
6.5. unicodedata --- Unicode データベース — Python 3.6.5 ドキュメント 7751
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... いなければ ValueError を発生させます。 unicodedata. decimal ( chr [ , default ] ) ¶ 文字 chr に割り当てられてい ... odedata . name ( '/' ) 'SOLIDUS' >>> unicodedata . decimal ( '9' ) 9 >>> unicodedata . decimal ( 'a' ) Traceb ... <stdin>" , line 1 , in <module> ValueError : not a decimal >>> unicodedata . category ( 'A' ) # 'L'etter, 'u' ...
https://man.plustar.jp/python/library/unicodedata.html - [similar]
What's New in Python 2.7 — Python 3.6.5 ドキュメント 7751
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... ースされました。 数値周りの扱いが、浮動小数点数でも Decimal クラスでもいろいろな点で改良されました、標準ライブ ... hon コード中の float や imaginary リテラルの解析、 Decimal から float への変換などです。 これに関連して、浮動 ... uted by Brian Quinlan; bpo-5788 .) 新しいメソッド: Decimal クラスに、浮動小数点数から Decimal への正確な変換を ... ドを使ったとしてもある程度の誤差は残ります。例えば、 Decimal.from_float(0.1) は Decimal('0.10000000000000000555 ...
https://man.plustar.jp/python/whatsnew/2.7.html - [similar]
What's New In Python 3.3 — Python 3.6.5 ドキュメント 7704
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... クトな 属性辞書 . ライブラリモジュールの大幅な改善: decimal モジュールのCによる高速化 email モジュールでのより ... インスタンスをシステムのタイムゾーンに変換します。 decimal ¶ bpo-7652 - decimal 算術演算の、高速なネイティブ ... の統合 C-module and libmpdec written by Stefan Krah. decimal モジュールの新しい C バージョンは高速な libmpdec と ... 点数算術演算を行います。libmpdec は IBM の「General Decimal Arithmetic Specification」に従っています。 性能向上 ...
https://man.plustar.jp/python/whatsnew/3.3.html - [similar]
What's New in Python 2.6 — Python 3.6.5 ドキュメント 7673
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... されて、ブロックが完了するやいなや必ず解放されます。 decimal モジュール内の localcontext() 関数は現在の decimal ... しておいてあとで元に戻すのを簡単にしてくれます: from decimal import Decimal , Context , localcontext # Displays ... with default precision of 28 digits v = Decimal ( '578' ) print v . sqrt () with localcontext ( Co ... e インスタンスを返すように修正されています。例えば Decimal.as_tuple() メソッドは sign , digits , exponent フィ ...
https://man.plustar.jp/python/whatsnew/2.6.html - [similar]
What's New In Python 3.2 — Python 3.6.5 ドキュメント 7673
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... る出力をしていましたが、これは浮動小数点数、複素数、 Decimal に対しても処理するようになり、これはあとに続く桁が ... せん。 (Contributed by Michael Foord in bpo-9110 .) decimal と fractions ¶ Mark Dickinson は、異なる数値データ ... ( Fraction ( 3 , 2 )) == hash ( 1.5 ) == \ hash ( Decimal ( "1.5" )) == hash ( complex ( 1.5 , 0 )) いくつか ... 互操作性についての制限の初期の決断は緩和されました。 Decimal('1.1') + float('1.1') のように、算術式内で暗黙に混 ...
https://man.plustar.jp/python/whatsnew/3.2.html - [similar]
What's New In Python 3.6 — Python 3.6.5 ドキュメント 7421
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » What's New in Pytho ... red.' >>> width = 10 >>> precision = 4 >>> value = decimal . Decimal ( "12.34567" ) >>> f "result: { value :{ ... ontributed by Alexander Belopolsky in bpo-27661 .) decimal ¶ New Decimal.as_integer_ratio() method that retur ... a pair (n, d) of integers that represent the given Decimal instance as a fraction, in lowest terms and with a ... positive denominator: >>> Decimal ( '-3.14' ) . as_integer_ratio () (-157, 50) (Cont ...
https://man.plustar.jp/python/whatsnew/3.6.html - [similar]
4. 組み込み型 — Python 3.6.5 ドキュメント 7343
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... : None と False 数値型におけるゼロ: 0 , 0.0 , 0j , Decimal(0) , Fraction(0, 1) 空のシーケンスまたはコレクショ ... tions や、ユーザ定義の精度の浮動小数点数を保持する decimal があります。) 数値は、数値リテラルによって、あるい ... さい)。実装の簡単さと 複数の数値型 ( int 、 float 、 decimal.Decimal 、 fractions.Fraction を含みます) 間の効率 ... tions.Fraction のすべてのインスタンスと、 float と decimal.Decimal のすべての有限なインスタンスに 対して適用さ ...
https://man.plustar.jp/python/library/stdtypes.html - [similar]
10.2. functools --- 高階関数と呼び出し可能オブジェクトの操作 — Python 3.6.5 ド... 7264
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... >> @fun . register ( float ) ... @fun . register ( Decimal ) ... def fun_num ( arg , verbose = False ): ... i ... neType'>, <class 'int'>, <class 'object'>, <class 'decimal.Decimal'>, <class 'list'>, <class 'float'>]) >>> f ...
https://man.plustar.jp/python/library/functools.html - [similar]
23.2. locale --- 国際化サービス — Python 3.6.5 ドキュメント 7232
ナビゲーション 索引 モジュール | 次へ | 前へ | Python » 3.6.5 ドキュメント » Python 標準ライブラ ... ーとして持っています: カテゴリ キー 意味 LC_NUMERIC 'decimal_point' 小数点を表す文字です。 'grouping' 'thousand ... どうかです (それぞれ正の値、負の値を表します)。 'mon_decimal_point' 金額表示の際に使われる小数点です。 'frac_di ... LC_CTYPE locale to the LC_NUMERIC locale to decode decimal_point and thousands_sep byte strings if they are n ...
https://man.plustar.jp/python/library/locale.html - [similar]
Pythonモジュール索引 — Python 3.6.5 ドキュメント 7232
ナビゲーション 索引 モジュール | Python » 3.6.5 ドキュメント » Pythonモジュール索引 _ | a | b | ... The standard "database" interface, based on ndbm. decimal Implementation of the General Decimal Arithmetic S ...
https://man.plustar.jp/python/py-modindex.html - [similar]
PREV 1 2 3 4 NEXT