math.fmod(x, y) Return fmod(x, y), as defined by the platform C library. Note that the Python expression x
is_infinite(x) Returns True if x is infinite; otherwise returns False.
math.ceil(x) Return the ceiling of x, the smallest integer greater than or equal to x. If x is not
copy_abs(x) Returns a copy of x with the sign set to 0.
is_finite(x) Returns True if x is finite; otherwise returns False.
remainder_near(x, y) Returns x - y * n, where n is the integer nearest the exact value of x / y
divide_int(x, y) Return x divided by y, truncated to an integer.
random.triangular(low, high, mode) Return a random floating point number N such that low <= N <= high
compare_total_mag(other, context=None) Compare two operands using their abstract representation rather than their value as in
cmath.acosh(x) Return the inverse hyperbolic cosine of x. There is one branch cut, extending left from 1 along the
Page 12 of 27