Python十進位數學計算模組decimal

來源:互聯網
上載者:User

Python提供了decimal模組用於十進位數學計算,它具有以下特點:

  1. 提供十進位資料類型,並且儲存為十進位數序列;
  2. 有界精度:用於儲存數位位元是固定的,可以通過decimal.getcontext().prec=x 來設定,不同的數字可以有不同的精度
  3. 浮點:十進位小數點的位置不固定(但位元是固定的)

decimal的構建:

可以通過整數、字串或者元組構建decimal.Decimal,對於浮點數需要先將其轉換為字串

decimal的context:

decimal在一個獨立的context下工作,可以通過getcontext來擷取當前環境。例如前面提到的可以通過decimal.getcontext().prec來設定小數點精度(預設為28):

>>> from decimal import Decimal as D>>> from decimal import getcontext  >>> getcontext()Context(prec=6, rounding=ROUND_HALF_EVEN, Emin=-999999999, Emax=999999999, capitals=1, flags=[Rounded, Inexact], traps=[DivisionByZero, InvalidOperation, Overflow])>>> getcontext().prec = 6 >>> D(1)/D(3) Decimal('0.333333')

decimal和float效能對比:

$: python -mtimeit -s 'from decimal import Decimal as D' 'D("1.2")+D("3.4")'$: python -mtimeit -s 'from decimal import Decimal as D' '1.2+3.4'

我在虛擬機器中測試前者耗時是後者的1.7k倍,但這在某些運算(例如財務運算)中是值得的,但如果要對非整數做上百次的運算,應堅持使用float。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.