divmod(a, b) Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder
oct(x) Convert an integer number to an octal string. The result is a valid Python expression. If x is not a Python
issubclass(class, classinfo) Return true if class is a subclass (direct, indirect or virtual)
class list([iterable]) Rather than being a function,
class int(x=0) class int(x, base=10) Return an integer object constructed from a number or string x, or
any(iterable) Return True if any element of the iterable is true. If the iterable is empty, return False
max(iterable, *[, key, default]) max(arg1, arg2, *args[, key]) Return the largest item in an iterable or the largest
callable(object) Return
sum(iterable[, start]) Sums start and the items of an iterable from left to right and returns the total. start
locals() Update and return a dictionary representing the current local symbol table. Free variables are returned by locals()
Page 5 of 7