decimal.Decimal.log10()
  • References/Python/Python/Numeric & Mathematical

log10(context=None) Return the base ten logarithm of the operand. The result is correctly rounded using the ROUND_HALF_EVEN

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

cmath.isinf(x) Return True if either the real or the imaginary part of x is an infinity, and False

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

from_float(f) Classmethod that converts a float to a decimal number, exactly. Note Decimal

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

statistics.stdev(data, xbar=None) Return the sample standard deviation (the square root of the sample variance). See variance()

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

math.pi The mathematical constant π = 3.141592..., to available precision.

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

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

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

min_mag(other, context=None) Similar to the min() method, but the comparison is done using the absolute values

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

cmath.sin(x) Return the sine of 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.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