thừa được lớn thật nhanh:
>>> math.factorial(170)
7257415615307998967396728211129263114716991681296451376543577798900561843401706157852350749242617459511490991237838520776666022565442753025328900773207510902400430280058295603966612599658257104398558294257568966313439612262571094946806711205568880457193340212661452800000000000000000000000000000000000000000L
Lưu ý L
; giai thừa của 170 vẫn còn chuyển thành một float:
>>> float(math.factorial(170))
7.257415615307999e+306
nhưng thừa tiếp theo là quá lớn:
>>> float(math.factorial(171))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
OverflowError: long int too large to convert to float
Bạn thể sử dụng decimal
module; tính toán sẽ chậm hơn, nhưng lớp Decimal()
có thể xử lý thừa kích thước này:
>>> from decimal import Decimal
>>> Decimal(math.factorial(171))
Decimal('1241018070217667823424840524103103992616605577501693185388951803611996075221691752992751978120487585576464959501670387052809889858690710767331242032218484364310473577889968548278290754541561964852153468318044293239598173696899657235903947616152278558180061176365108428800000000000000000000000000000000000000000')
Bạn sẽ phải sử dụng Decimal()
giá trị suốt:
from decimal import *
with localcontext() as ctx:
ctx.prec = 32 # desired precision
p = ctx.power(3, idx)
depart = ctx.exp(-3) * p
depart /= math.factorial(idx)
Nguồn
2013-04-23 16:29:25
thừa nhận * thực sự * lớn, * thực sự * nhanh –
gì là giá trị của idx khi bạn nhấn lỗi này? – Pyrce
Khi bạn muốn tính toán một thừa, tính toán đó là logarit thay – zehelvion