issubclass(class, classinfo) Return true if class is a subclass (direct, indirect or virtual)
any(iterable) Return True if any element of the iterable is true. If the iterable is empty, return False
class int(x=0) class int(x, base=10) Return an integer object constructed from a number or string x, or
memoryview(obj) Return a “memory view” object created from the given argument. See
round(number[, ndigits]) Return the floating point value number rounded to ndigits digits after the decimal
class type(object) class type(name, bases, dict) With one argument, return the type of an object. The return
max(iterable, *[, key, default]) max(arg1, arg2, *args[, key]) Return the largest item in an iterable or the largest
compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1) Compile the source into a code or AST object
sorted(iterable[, key][, reverse]) Return a new sorted list from the items in iterable. Has
class bytearray([source[, encoding[, errors]]]) Return a new array of bytes. The bytearray class is a mutable sequence
Page 6 of 7