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

is_infinite(x) Returns True if x is infinite; otherwise returns False.

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
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
random.choice()
  • References/Python/Python/Numeric & Mathematical

random.choice(seq) Return a random element from the non-empty sequence seq. If seq is empty, raises

2025-01-10 15:47:30
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
math.e
  • References/Python/Python/Numeric & Mathematical

math.e The mathematical constant e = 2.718281..., to available precision.

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

copy_negate(x) Returns a copy of x with the sign inverted.

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

to_eng_string(context=None) Convert to a string, using engineering notation if an exponent is needed.

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