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

logical_xor(x, y) Applies the logical operation xor between each operand’s digits.

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

copy_sign(x, y) Copies the sign from y to x.

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

conjugate() Just returns self, this method is only to comply with the Decimal Specification.

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

logical_and(other, context=None) logical_and() is a logical operation which takes two logical operands

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

statistics.mean(data) Return the sample arithmetic mean of data, a sequence or iterator of real-valued numbers.

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

math.log1p(x) Return the natural logarithm of 1+x (base e). The result is calculated in a way which is accurate

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

denominator Denominator of the Fraction in lowest term.

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

max(other, context=None) Like max(self, other) except that the context rounding rule is applied before returning

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

math.cos(x) Return the cosine of x radians.

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

math.trunc(x) Return the

2025-01-10 15:47:30