round(number[, ndigits]) Return the floating point value number rounded to ndigits digits after the decimal
hex(x) Convert an integer number to a lowercase hexadecimal string prefixed with “0x”, for example:
all(iterable) Return True if all elements of the iterable are true (or if the iterable is empty). Equivalent
memoryview(obj) Return a “memory view” object created from the given argument. See
tuple([iterable]) Rather than being a function,
ord(c) Given a string representing one Unicode character, return an integer representing the Unicode code point of that character
class type(object) class type(name, bases, dict) With one argument, return the type of an object. The return
sorted(iterable[, key][, reverse]) Return a new sorted list from the items in iterable. Has
super([type[, object-or-type]]) Return a proxy object that delegates method calls to a parent or sibling class of type
compile(source, filename, mode, flags=0, dont_inherit=False, optimize=-1) Compile the source into a code or AST object
Page 6 of 7