math.fabs(x) Return the absolute value of x.
is_zero(x) Returns True if x is a zero; otherwise returns False.
to_integral_value(rounding=None, context=None) Round to the nearest integer without signaling Inexact or Rounded
math.log10(x) Return the base-10 logarithm of x. This is usually more accurate than log(x, 10).
as_tuple() Return a named tuple representation of the number: DecimalTuple(sign
math.cos(x) Return the cosine of x radians.
next_plus(x) Returns the smallest representable number larger than x.
min(other, context=None) Like min(self, other) except that the context rounding rule is applied before returning
copy_sign(x, y) Copies the sign from y to x.
copy_decimal(num) Return a copy of the Decimal instance num.
Page 1 of 27