callable(object) Return
all(iterable) Return True if all elements of the iterable are true (or if the iterable is empty). Equivalent
class type(object) class type(name, bases, dict) With one argument, return the type of an object. The return
tuple([iterable]) Rather than being a function,
round(number[, ndigits]) Return the floating point value number rounded to ndigits digits after the decimal
oct(x) Convert an integer number to an octal string. The result is a valid Python expression. If x is not a Python
any(iterable) Return True if any element of the iterable is true. If the iterable is empty, return False
zip(*iterables) Make an iterator that aggregates elements from each of the iterables. Returns
open(file, mode='r', buffering=-1, encoding=None, errors=None, newline=None, closefd=True, opener=None) Open file and
class bytearray([source[, encoding[, errors]]]) Return a new array of bytes. The bytearray class is a mutable sequence
Page 6 of 7