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

rotate(other, context=None) Return the result of rotating the digits of the first operand by an amount specified by the second

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

statistics.pstdev(data, mu=None) Return the population standard deviation (the square root of the population variance). See

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

copy_abs(x) Returns a copy of x with the sign set to 0.

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

is_finite(x) Returns True if x is finite; otherwise returns False.

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
decimal.Decimal.quantize()
  • References/Python/Python/Numeric & Mathematical

quantize(exp, rounding=None, context=None) Return a value equal to the first operand after rounding and having the exponent

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

decimal.setcontext(c) Set the current context for the active thread to c.

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

statistics.mode(data) Return the most common data point from discrete or nominal data. The mode (when it exists) is

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

random.normalvariate(mu, sigma) Normal distribution. mu is the mean, and sigma is the standard deviation.

2025-01-10 15:47:30