decimal — Decimal fixed-point and floating-point arithmetic¶
Source code: Lib/decimal.py
The decimal module provides support for fast correctly rounded
decimal floating-point arithmetic. It offers several advantages over the
float datatype:
Decimal “is based on a floating-point model which was designed with people in mind, and necessarily has a paramount guiding principle – computers must provide an arithmetic that works in the same way as the arithmetic that people learn at school.” – excerpt from the decimal arithmetic specification.
Decimal numbers can be represented exactly. In contrast, numbers like
1.1and2.2do not have exact representations in binary floating point. End users typically would not expect1.1 + 2.2to display as3.3000000000000003as it does with binary floating point.The exactness carries over into arithmetic. In decimal floating point,
0.1 + 0.1 + 0.1 - 0.3is exactly equal to zero. In binary floating point, the result is5.5511151231257827e-017. While near to zero, the differences prevent reliable equality testing and differences can accumulate. For this reason, decimal is preferred in accounting applications which have strict equality invariants.The decimal module incorporates a notion of significant places so that
1.30 + 1.20is2.50. The trailing zero is kept to indicate significance. This is the customary presentation for monetary applications. For multiplication, the “schoolbook” approach uses all the figures in the multiplicands. For instance,1.3 * 1.2gives1.56while1.30 * 1.20gives1.5600.Unlike hardware based binary floating point, the decimal module has a user alterable precision (defaulting to 28 places) which can be as large as needed for a given problem:
>>> from decimal import * >>> getcontext().prec = 6 >>> Decimal(1) / Decimal(7) Decimal('0.142857') >>> getcontext().prec = 28 >>> Decimal(1) / Decimal(7) Decimal('0.1428571428571428571428571429')
Both binary and decimal floating point are implemented in terms of published standards. While the built-in float type exposes only a modest portion of its capabilities, the decimal module exposes all required parts of the standard. When needed, the programmer has full control over rounding and signal handling. This includes an option to enforce exact arithmetic by using exceptions to block any inexact operations.
The decimal module was designed to support “without prejudice, both exact unrounded decimal arithmetic (sometimes called fixed-point arithmetic) and rounded floating-point arithmetic.” – excerpt from the decimal arithmetic specification.
The module design is centered around three concepts: the decimal number, the context for arithmetic, and signals.
A decimal number is immutable. It has a sign, coefficient digits, and an
exponent. To preserve significance, the coefficient digits do not truncate
trailing zeros. Decimals also include special values such as
Infinity, -Infinity, and NaN. The standard also
differentiates -0 from +0.
The context for arithmetic is an environment specifying precision, rounding
rules, limits on exponents, flags indicating the results of operations, and trap
enablers which determine whether signals are treated as exceptions. Rounding
options include ROUND_CEILING, ROUND_DOWN,
ROUND_FLOOR, ROUND_HALF_DOWN, ROUND_HALF_EVEN,
ROUND_HALF_UP, ROUND_UP, and ROUND_05UP.
Signals are groups of exceptional conditions arising during the course of
computation. Depending on the needs of the application, signals may be ignored,
considered as informational, or treated as exceptions. The signals in the
decimal module are: Clamped, InvalidOperation,
DivisionByZero, Inexact, Rounded, Subnormal,
Overflow, Underflow and FloatOperation.
For each signal there is a flag and a trap enabler. When a signal is encountered, its flag is set to one, then, if the trap enabler is set to one, an exception is raised. Flags are sticky, so the user needs to reset them before monitoring a calculation.
See also
IBM’s General Decimal Arithmetic Specification, The General Decimal Arithmetic Specification.
Quick-start tutorial¶
The usual start to using decimals is importing the module, viewing the current
context with getcontext() and, if necessary, setting new values for
precision, rounding, or enabled traps:
>>> from decimal import *
>>> getcontext()
Context(prec=28, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999,
capitals=1, clamp=0, flags=[], traps=[Overflow, DivisionByZero,
InvalidOperation])
>>> getcontext().prec = 7 # Set a new precision
Decimal instances can be constructed from integers, strings, floats, or tuples.
Construction from an integer or a float performs an exact conversion of the
value of that integer or float. Decimal numbers include special values such as
NaN which stands for “Not a number”, positive and negative
Infinity, and -0:
>>> getcontext().prec = 28
>>> Decimal(10)
Decimal('10')
>>> Decimal('3.14')
Decimal('3.14')
>>> Decimal(3.14)
Decimal('3.140000000000000124344978758017532527446746826171875')
>>> Decimal((0, (3, 1, 4), -2))
Decimal('3.14')
>>> Decimal(str(2.0 ** 0.5))
Decimal('1.4142135623730951')
>>> Decimal(2) ** Decimal('0.5')
Decimal('1.414213562373095048801688724')
>>> Decimal('NaN')
Decimal('NaN')
>>> Decimal('-Infinity')
Decimal('-Infinity')
If the FloatOperation signal is trapped, accidental mixing of
decimals and floats in constructors or ordering comparisons raises
an exception:
>>> c = getcontext()
>>> c.traps[FloatOperation] = True
>>> Decimal(3.14)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
decimal.FloatOperation: [<class 'decimal.FloatOperation'>]
>>> Decimal('3.5') < 3.7
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
decimal.FloatOperation: [<class 'decimal.FloatOperation'>]
>>> Decimal('3.5') == 3.5
True
Added in version 3.3.
The significance of a new Decimal is determined solely by the number of digits input. Context precision and rounding only come into play during arithmetic operations.
>>> getcontext().prec = 6
>>> Decimal('3.0')
Decimal('3.0')
>>> Decimal('3.1415926535')
Decimal('3.1415926535')
>>> Decimal('3.1415926535') + Decimal('2.7182818285')
Decimal('5.85987')
>>> getcontext().rounding = ROUND_UP
>>> Decimal('3.1415926535') + Decimal('2.7182818285')
Decimal('5.85988')
If the internal limits of the C version are exceeded, constructing
a decimal raises InvalidOperation:
>>> Decimal("1e9999999999999999999")
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
decimal.InvalidOperation: [<class 'decimal.InvalidOperation'>]
Changed in version 3.3.
Decimals interact well with much of the rest of Python. Here is a small decimal floating-point flying circus:
>>> data = list(map(Decimal, '1.34 1.87 3.45 2.35 1.00 0.03 9.25'.split()))
>>> max(data)
Decimal('9.25')
>>> min(data)
Decimal('0.03')
>>> sorted(data)
[Decimal('0.03'), Decimal('1.00'), Decimal('1.34'), Decimal('1.87'),
Decimal('2.35'), Decimal('3.45'), Decimal('9.25')]
>>> sum(data)
Decimal('19.29')
>>> a,b,c = data[:3]
>>> str(a)
'1.34'
>>> float(a)
1.34
>>> round(a, 1)
Decimal('1.3')
>>> int(a)
1
>>> a * 5
Decimal('6.70')
>>> a * b
Decimal('2.5058')
>>> c % a
Decimal('0.77')
And some mathematical functions are also available to Decimal:
>>> getcontext().prec = 28
>>> Decimal(2).sqrt()
Decimal('1.414213562373095048801688724')
>>> Decimal(1).exp()
Decimal('2.718281828459045235360287471')
>>> Decimal('10').ln()
Decimal('2.302585092994045684017991455')
>>> Decimal('10').log10()
Decimal('1')
The quantize() method rounds a number to a fixed exponent. This method is
useful for monetary applications that often round results to a fixed number of
places:
>>> Decimal('7.325').quantize(Decimal('.01'), rounding=ROUND_DOWN)
Decimal('7.32')
>>> Decimal('7.325').quantize(Decimal('1.'), rounding=ROUND_UP)
Decimal('8')
As shown above, the getcontext() function accesses the current context and
allows the settings to be changed. This approach meets the needs of most
applications.
For more advanced work, it may be useful to create alternate contexts using the
Context() constructor. To make an alternate active, use the setcontext()
function.
In accordance with the standard, the decimal module provides two ready to
use standard contexts, BasicContext and ExtendedContext. The
former is especially useful for debugging because many of the traps are
enabled:
>>> myothercontext = Context(prec=60, rounding=ROUND_HALF_DOWN)
>>> setcontext(myothercontext)
>>> Decimal(1) / Decimal(7)
Decimal('0.142857142857142857142857142857142857142857142857142857142857')
>>> ExtendedContext
Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999,
capitals=1, clamp=0, flags=[], traps=[])
>>> setcontext(ExtendedContext)
>>> Decimal(1) / Decimal(7)
Decimal('0.142857143')
>>> Decimal(42) / Decimal(0)
Decimal('Infinity')
>>> setcontext(BasicContext)
>>> Decimal(42) / Decimal(0)
Traceback (most recent call last):
File "<pyshell#143>", line 1, in -toplevel-
Decimal(42) / Decimal(0)
DivisionByZero: x / 0
Contexts also have signal flags for monitoring exceptional conditions
encountered during computations. The flags remain set until explicitly cleared,
so it is best to clear the flags before each set of monitored computations by
using the clear_flags() method.
>>> setcontext(ExtendedContext)
>>> getcontext().clear_flags()
>>> Decimal(355) / Decimal(113)
Decimal('3.14159292')
>>> getcontext()
Context(prec=9, rounding=ROUND_HALF_EVEN, Emin=-999999, Emax=999999,
capitals=1, clamp=0, flags=[Inexact, Rounded], traps=[])
The flags entry shows that the rational approximation to pi was rounded (digits beyond the context precision were thrown away) and that the result is inexact (some of the discarded digits were non-zero).
Individual traps are set using the dictionary in the traps
attribute of a context:
>>> setcontext(ExtendedContext)
>>> Decimal(1) / Decimal(0)
Decimal('Infinity')
>>> getcontext().traps[DivisionByZero] = 1
>>> Decimal(1) / Decimal(0)
Traceback (most recent call last):
File "<pyshell#112>", line 1, in -toplevel-
Decimal(1) / Decimal(0)
DivisionByZero: x / 0
Most programs adjust the current context only once, at the beginning of the
program. And, in many applications, data is converted to Decimal with
a single cast inside a loop. With context set and decimals created, the bulk of
the program manipulates the data no differently than with other Python numeric
types.
Decimal objects¶
- class decimal.Decimal(value='0', context=None)¶
Construct a new
Decimalobject based from value.value can be an integer, string, tuple,
float, or anotherDecimalobject. If no value is given, returnsDecimal('0'). If value is a string, it should conform to the decimal numeric string syntax after leading and trailing whitespace characters, as well as underscores throughout, are removed:sign ::= '+' | '-' digit ::= '0' | '1' | '2' | '3' | '4' | '5' | '6' | '7' | '8' | '9' indicator ::= 'e' | 'E' digits ::= digit [digit]... decimal-part ::= digits '.' [digits] | ['.'] digits exponent-part ::= indicator [sign] digits infinity ::= 'Infinity' | 'Inf' nan ::= 'NaN' [digits] | 'sNaN' [digits] numeric-value ::= decimal-part [exponent-part] | infinity numeric-string ::= [sign] numeric-value | [sign] nan
Other Unicode decimal digits are also permitted where
digitappears above. These include decimal digits from various other alphabets (for example, Arabic-Indic and Devanāgarī digits) along with the fullwidth digits'\uff10'through'\uff19'. Case is not significant, so, for example,inf,Inf,INFINITY, andiNfINityare all acceptable spellings for positive infinity.If value is a
tuple, it should have three components, a sign (0for positive or1for negative), atupleof digits, and an integer exponent. For example,Decimal((0, (1, 4, 1, 4), -3))returnsDecimal('1.414').If value is a
float, the binary floating-point value is losslessly converted to its exact decimal equivalent. This conversion can often require 53 or more digits of precision. For example,Decimal(float('1.1'))converts toDecimal('1.100000000000000088817841970012523233890533447265625').The context precision does not affect how many digits are stored. That is determined exclusively by the number of digits in value. For example,
Decimal('3.00000')records all five zeros even if the context precision is only three.The purpose of the context argument is determining what to do if value is a malformed string. If the context traps
InvalidOperation, an exception is raised; otherwise, the constructor returns a new Decimal with the value ofNaN.Once constructed,
Decimalobjects are immutable.Changed in version 3.2: The argument to the constructor is now permitted to be a
floatinstance.Changed in version 3.3:
floatarguments raise an exception if theFloatOperationtrap is set. By default the trap is off.Changed in version 3.6: Underscores are allowed for grouping, as with integral and floating-point literals in code.
Decimal floating-point objects share many properties with the other built-in numeric types such as
floatandint. All of the usual math operations and special methods apply. Likewise, decimal objects can be copied, pickled, printed, used as dictionary keys, used as set elements, compared, sorted, and coerced to another type (such asfloatorint).There are some small differences between arithmetic on Decimal objects and arithmetic on integers and floats. When the remainder operator
%is applied to Decimal objects, the sign of the result is the sign of the dividend rather than the sign of the divisor:>>> (-7) % 4 1 >>> Decimal(-7) % Decimal(4) Decimal('-3')
The integer division operator
//behaves analogously, returning the integer part of the true quotient (truncating towards zero) rather than its floor, so as to preserve the usual identityx == (x // y) * y + x % y:>>> -7 // 4 -2 >>> Decimal(-7) // Decimal(4) Decimal('-1')
The
%and//operators implement theremainderanddivide-integeroperations (respectively) as described in the specification.Decimal objects cannot generally be combined with floats or instances of
fractions.Fractionin arithmetic operations: an attempt to add aDecimalto afloat, for example, will raise aTypeError. However, it is possible to use Python’s comparison operators to compare aDecimalinstancexwith another numbery. This avoids confusing results when doing equality comparisons between numbers of different types.Changed in version 3.2: Mixed-type comparisons between
Decimalinstances and other numeric types are now fully supported.In addition to the standard numeric properties, decimal floating-point objects also have a number of specialized methods:
- adjusted()¶
Return the adjusted exponent after shifting out the coefficient’s rightmost digits until only the lead digit remains:
Decimal('321e+5').adjusted()returns seven. Used for determining the position of the most significant digit with respect to the decimal point.
- as_integer_ratio()¶
Return a pair
(n, d)of integers that represent the givenDecimalinstance as a fraction, in lowest terms and with a positive denominator:>>> Decimal('-3.14').as_integer_ratio() (-157, 50)
The conversion is exact. Raise OverflowError on infinities and ValueError on NaNs.
Added in version 3.6.
- as_tuple()¶
Return a named tuple representation of the number:
DecimalTuple(sign, digits, exponent).
- canonical()¶
Return the canonical encoding of the argument. Currently, the encoding of a
Decimalinstance is always canonical, so this operation returns its argument unchanged.
- compare(other, context=None)¶
Compare the values of two Decimal instances.
compare()returns a Decimal instance, and if either operand is a NaN then the result is a NaN:a or b is a NaN ==> Decimal('NaN') a < b ==> Decimal('-1') a == b ==> Decimal('0') a > b ==> Decimal('1')
- compare_signal(other, context=None)¶
This operation is identical to the
compare()method, except that all NaNs signal. That is, if neither operand is a signaling NaN then any quiet NaN operand is treated as though it were a signaling NaN.
- compare_total(other, context=None)¶
Compare two operands using their abstract representation rather than their numerical value. Similar to the
compare()method, but the result gives a total ordering onDecimalinstances. TwoDecimalinstances with the same numeric value but different representations compare unequal in this ordering:>>> Decimal('12.0').compare_total(Decimal('12')) Decimal('-1')
Quiet and signaling NaNs are also included in the total ordering. The result of this function is
Decimal('0')if both operands have the same representation,Decimal('-1')if the first operand is lower in the total order than the second, andDecimal('1')if the first operand is higher in the total order than the second operand. See the specification for details of the total order.This operation is unaffected by context and is quiet: no flags are changed and no rounding is performed. As an exception, the C version may raise InvalidOperation if the second operand cannot be converted exactly.
- compare_total_mag(other, context=None)¶
Compare two operands using their abstract representation rather than their value as in
compare_total(), but ignoring the sign of each operand.x.compare_total_mag(y)is equivalent tox.copy_abs().compare_total(y.copy_abs()).This operation is unaffected by context and is quiet: no flags are changed and no rounding is performed. As an exception, the C version may raise InvalidOperation if the second operand cannot be converted exactly.
- conjugate()¶
Just returns self, this method is only to comply with the Decimal Specification.
- copy_abs()¶
Return the absolute value of the argument. This operation is unaffected by the context and is quiet: no flags are changed and no rounding is performed.
- copy_negate()¶
Return the negation of the argument. This operation is unaffected by the context and is quiet: no flags are changed and no rounding is performed.
- copy_sign(other, context=None)¶
Return a copy of the first operand with the sign set to be the same as the sign of the second operand. For example:
>>> Decimal('2.3').copy_sign(Decimal('-1.5')) Decimal('-2.3')
This operation is unaffected by context and is quiet: no flags are changed and no rounding is performed. As an exception, the C version may raise InvalidOperation if the second operand cannot be converted exactly.
- exp(context=None)¶
Return the value of the (natural) exponential function
e**xat the given number. The result is correctly rounded using theROUND_HALF_EVENrounding mode.>>> Decimal(1).exp() Decimal('2.718281828459045235360287471') >>> Decimal(321).exp() Decimal('2.561702493119680037517373933E+139')
- classmethod from_float(f, /)¶
Alternative constructor that only accepts instances of
floatorint.Note
Decimal.from_float(0.1)is not the same asDecimal('0.1'). Since 0.1 is not exactly representable in binary floating point, the value is stored as the nearest representable value which is0x1.999999999999ap-4. That equivalent value in decimal is0.1000000000000000055511151231257827021181583404541015625.>>> Decimal.from_float(0.1) Decimal('0.1000000000000000055511151231257827021181583404541015625') >>> Decimal.from_float(float('nan')) Decimal('NaN') >>> Decimal.from_float(float('inf')) Decimal('Infinity') >>> Decimal.from_float(float('-inf')) Decimal('-Infinity')
Added in version 3.1.
- classmethod from_number(number, /)¶
Alternative constructor that only accepts instances of
float,intorDecimal, but not strings or tuples.>>> Decimal.from_number(314) Decimal('314') >>> Decimal.from_number(0.1) Decimal('0.1000000000000000055511151231257827021181583404541015625') >>> Decimal.from_number(Decimal('3.14')) Decimal('3.14')
Added in version 3.14.
- fma(other, third, context=None)¶
Fused multiply-add. Return self*other+third with no rounding of the intermediate product self*other.
>>> Decimal(2).fma(3, 5) Decimal('11')
- is_canonical()¶
Return
Trueif the argument is canonical andFalseotherwise. Currently, aDecimalinstance is always canonical, so this operation always returnsTrue.
- is_finite()¶
Return
Trueif the argument is a finite number, andFalseif the argument is an infinity or a NaN.
- is_infinite()¶
Return
Trueif the argument is either positive or negative infinity andFalseotherwise.
- is_normal(context=None)¶
Return
Trueif the argument is a normal finite number. ReturnFalseif the argument is zero, subnormal, infinite or a NaN.
- is_signed()¶
Return
Trueif the argument has a negative sign andFalseotherwise. Note that zeros and NaNs can both carry signs.
- ln(context=None)¶
Return the natural (base e) logarithm of the operand. The result is correctly rounded using the
ROUND_HALF_EVENrounding mode.
- log10(context=None)¶
Return the base ten logarithm of the operand. The result is correctly rounded using the
ROUND_HALF_EVENrounding mode.
- logb(context=None)¶
For a nonzero number, return the adjusted exponent of its operand as a
Decimalinstance. If the operand is a zero thenDecimal('-Infinity')is returned and theDivisionByZeroflag is raised. If the operand is an infinity thenDecimal('Infinity')is returned.
- logical_and(other, context=None)¶
logical_and()is a logical operation which takes two logical operands (see Logical operands). The result is the digit-wiseandof the two operands.
- logical_invert(context=None)¶
logical_invert()is a logical operation. The result is the digit-wise inversion of the operand.
- logical_or(other, context=None)¶
logical_or()is a logical operation which takes two logical operands (see Logical operands). The result is the digit-wiseorof the two operands.
- logical_xor(other, context=None)¶
logical_xor()is a logical operation which takes two logical operands (see Logical operands). The result is the digit-wise exclusive or of the two operands.
- max(other, context=None)¶
Like
max(self, other)except that the context rounding rule is applied before returning and thatNaNvalues are either signaled or ignored (depending on the context and whether they are signaling or quiet).
- max_mag(other, context=None)¶
Similar to the
max()method, but the comparison is done using the absolute values of the operands.
- min(other, context=None)¶
Like
min(self, other)except that the context rounding rule is applied before returning and thatNaNvalues are either signaled or ignored (depending on the context and whether they are signaling or quiet).
- min_mag(other, context=None)¶
Similar to the
min()method, but the comparison is done using the absolute values of the operands.
- next_minus(context=None)¶
Return the largest number representable in the given context (or in the current thread’s context if no context is given) that is smaller than the given operand.
- next_plus(context=None)¶
Return the smallest number representable in the given context (or in the current thread’s context if no context is given) that is larger than the given operand.
- next_toward(other, context=None)¶
If the two operands are unequal, return the number closest to the first operand in the direction of the second operand. If both operands are numerically equal, return a copy of the first operand with the sign set to be the same as the sign of the second operand.
- normalize(context=None)¶
Used for producing canonical values of an equivalence class within either the current context or the specified context.
This has the same semantics as the unary plus operation, except that if the final result is finite it is reduced to its simplest form, with all trailing zeros removed and its sign preserved. That is, while the coefficient is non-zero and a multiple of ten the coefficient is divided by ten and the exponent is incremented by 1. Otherwise (the coefficient is zero) the exponent is set to 0. In all cases the sign is unchanged.
For example,
Decimal('32.100')andDecimal('0.321000e+2')both normalize to the equivalent valueDecimal('32.1').Note that rounding is applied before reducing to simplest form.
In the latest versions of the specification, this operation is also known as
reduce.
- number_class(context=None)¶
Return a string describing the class of the operand. The returned value is one of the following ten strings.
"-Infinity", indicating that the operand is negative infinity."-Normal", indicating that the operand is a negative normal number."-Subnormal", indicating that the operand is negative and subnormal."-Zero", indicating that the operand is a negative zero."+Zero", indicating that the operand is a positive zero."+Subnormal", indicating that the operand is positive and subnormal."+Normal", indicating that the operand is a positive normal number."+Infinity", indicating that the operand is positive infinity."NaN", indicating that the operand is a quiet NaN (Not a Number)."sNaN", indicating that the operand is a signaling NaN.
- quantize(exp, rounding=None, context=None)¶
Return a value equal to the first operand after rounding and having the exponent of the second operand.
>>> Decimal('1.41421356').quantize(Decimal('1.000')) Decimal('1.414')
Unlike other operations, if the length of the coefficient after the quantize operation would be greater than precision, then an
InvalidOperationis signaled. This guarantees that, unless there is an error condition, the quantized exponent is always equal to that of the right-hand operand.Also unlike other operations, quantize never signals Underflow, even if the result is subnormal and inexact.
If the exponent of the second operand is larger than that of the first then rounding may be necessary. In this case, the rounding mode is determined by the
roundingargument if given, else by the givencontextargument; if neither argument is given the rounding mode of the current thread’s context is used.An error is returned whenever the resulting exponent is greater than
Emaxor less thanEtiny().
- radix()¶
Return
Decimal(10), the radix (base) in which theDecimalclass does all its arithmetic. Included for compatibility with the specification.
- remainder_near(other, context=None)¶
Return the remainder from dividing self by other. This differs from
self % otherin that the sign of the remainder is chosen so as to minimize its absolute value. More precisely, the return value isself - n * otherwherenis the integer nearest to the exact value ofself / other, and if two integers are equally near then the even one is chosen.If the result is zero then its sign will be the sign of self.
>>> Decimal(18).remainder_near(Decimal(10)) Decimal('-2') >>> Decimal(25).remainder_near(Decimal(10)) Decimal('5') >>> Decimal(35).remainder_near(Decimal(10)) Decimal('-5')
- rotate(other, context=None)¶
Return the result of rotating the digits of the first operand by an amount specified by the second operand. The second operand must be an integer in the range -precision through precision. The absolute value of the second operand gives the number of places to rotate. If the second operand is positive then rotation is to the left; otherwise rotation is to the right. The coefficient of the first operand is padded on the left with zeros to length precision if necessary. The sign and exponent of the first operand are unchanged.
- same_quantum(other, context=None)¶
Test whether self and other have the same exponent or whether both are
NaN.This operation is unaffected by context and is quiet: no flags are changed and no rounding is performed. As an exception, the C version may raise InvalidOperation if the second operand cannot be converted exactly.
- scaleb(other, context=None)¶
Return the first operand with exponent adjusted by the second. Equivalently, return the first operand multiplied by
10**other. The second operand must be an integer.
- shift(other, context=None)¶
Return the result of shifting the digits of the first operand by an amount specified by the second operand. The second operand must be an integer in the range -precision through precision. The absolute value of the second operand gives the number of places to shift. If the second operand is positive then the shift is to the left; otherwise the shift is to the right. Digits shifted into the coefficient are zeros. The sign and exponent of the first operand are unchanged.
- sqrt(context=None)¶
Return the square root of the argument to full precision.
- to_eng_string(context=None)¶
Convert to a string, using engineering notation if an exponent is needed.
Engineering notation has an exponent which is a multiple of 3. This can leave up to 3 digits to the left of the decimal place and may require the addition of either one or two trailing zeros.
For example, this converts
Decimal('123E+1')toDecimal('1.23E+3').
- to_integral(rounding=None, context=None)¶
Identical to the
to_integral_value()method. Theto_integralname has been kept for compatibility with older versions.
- to_integral_exact(rounding=None, context=None)¶
Round to the nearest integer, signaling
InexactorRoundedas appropriate if rounding occurs. The rounding mode is determined by theroundingparameter if given, else by the givencontext. If neither parameter is given then the rounding mode of the current context is used.
- to_integral_value(rounding=None, context=None)¶
Round to the nearest integer without signaling
InexactorRounded. If given, applies rounding; otherwise, uses the rounding method in either the supplied context or the current context.
Decimal numbers can be rounded using the
round()function:- round(number)
- round(number, ndigits)
If ndigits is not given or
None, returns the nearestintto number, rounding ties to even, and ignoring the rounding mode of theDecimalcontext. RaisesOverflowErrorif number is an infinity orValueErrorif it is a (quiet or signaling) NaN.If ndigits is an
int, the context’s rounding mode is respected and aDecimalrepresenting number rounded to the nearest multiple ofDecimal('1E-ndigits')is returned; in this case,round(number, ndigits)is equivalent toself.quantize(Decimal('1E-ndigits')). ReturnsDecimal('NaN')if number is a quiet NaN. RaisesInvalidOperationif number is an infinity, a signaling NaN, or if the length of the coefficient after the quantize operation would be greater than the current context’s precision. In other words, for the non-corner cases:if ndigits is positive, return number rounded to ndigits decimal places;
if ndigits is zero, return number rounded to the nearest integer;
if ndigits is negative, return number rounded to the nearest multiple of
10**abs(ndigits).
For example:
>>> from decimal import Decimal, getcontext, ROUND_DOWN >>> getcontext().rounding = ROUND_DOWN >>> round(Decimal('3.75')) # context rounding ignored 4 >>> round(Decimal('3.5')) # round-ties-to-even 4 >>> round(Decimal('3.75'), 0) # uses the context rounding Decimal('3') >>> round(Decimal('3.75'), 1) Decimal('3.7') >>> round(Decimal('3.75'), -1) Decimal('0E+1')