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

to_sci_string(x) Converts a number to a string using scientific notation.

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

rotate(x, y) Returns a rotated copy of x, y times.

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

math.isclose(a, b, *, rel_tol=1e-09, abs_tol=0.0) Return True if the values a and b are close

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

math.asin(x) Return the arc sine of x, in radians.

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

random.randint(a, b) Return a random integer N such that a <= N <= b. Alias for randrange(a

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

cmath.sinh(x) Return the hyperbolic sine of x.

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

multiply(x, y) Return the product of x and y.

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

shift(x, y) Returns a shifted copy of x, y times.

2025-01-10 15:47:30