from_float(flt) This class method constructs a Fraction representing the exact value of flt, which must
math.fmod(x, y) Return fmod(x, y), as defined by the platform C library. Note that the Python expression x
statistics.median_low(data) Return the low median of numeric data. If data is empty, StatisticsError is
random.triangular(low, high, mode) Return a random floating point number N such that low <= N <= high
ln(context=None) Return the natural (base e) logarithm of the operand. The result is correctly rounded using the ROUND_HALF_EVEN
divmod(x, y) Divides two numbers and returns the integer part of the result.
max_mag(x, y) Compares the values numerically with their sign ignored.
to_eng_string(context=None) Convert to a string, using engineering notation if an exponent is needed.
math.hypot(x, y) Return the Euclidean norm, sqrt(x*x + y*y). This is the length of the vector from the origin to
statistics.median_high(data) Return the high median of data. If data is empty, StatisticsError is raised
Page 12 of 27