decimal.Context.max()
  • References/Python/Python/Numeric & Mathematical

max(x, y) Compares two values numerically and returns the maximum.

2025-01-10 15:47:30
decimal.Decimal.radix()
  • References/Python/Python/Numeric & Mathematical

radix() Return Decimal(10), the radix (base) in which the Decimal class does all its arithmetic. Included

2025-01-10 15:47:30
decimal.Context.scaleb()
  • References/Python/Python/Numeric & Mathematical

scaleb(x, y) Returns the first operand after adding the second value its exp.

2025-01-10 15:47:30
numbers.Rational.denominator
  • References/Python/Python/Numeric & Mathematical

denominator Abstract.

2025-01-10 15:47:30
math.fmod()
  • References/Python/Python/Numeric & Mathematical

math.fmod(x, y) Return fmod(x, y), as defined by the platform C library. Note that the Python expression x

2025-01-10 15:47:30
cmath.acosh()
  • References/Python/Python/Numeric & Mathematical

cmath.acosh(x) Return the inverse hyperbolic cosine of x. There is one branch cut, extending left from 1 along the

2025-01-10 15:47:30
fractions.Fraction.from_float()
  • References/Python/Python/Numeric & Mathematical

from_float(flt) This class method constructs a Fraction representing the exact value of flt, which must

2025-01-10 15:47:30
fractions.Fraction.numerator
  • References/Python/Python/Numeric & Mathematical

numerator Numerator of the Fraction in lowest term.

2025-01-10 15:47:30
decimal.Decimal.next_plus()
  • References/Python/Python/Numeric & Mathematical

next_plus(context=None) Return the smallest number representable in the given context (or in the current thread’s context if

2025-01-10 15:47:30
random.triangular()
  • References/Python/Python/Numeric & Mathematical

random.triangular(low, high, mode) Return a random floating point number N such that low <= N <= high

2025-01-10 15:47:30