class set([iterable]) Return a new
map(function, iterable, ...) Return an iterator that applies function to every item of iterable, yielding
globals() Return a dictionary representing the current global symbol table. This is always the dictionary of the current module
__import__(name, globals=None, locals=None, fromlist=(), level=0) Note
bin(x) Convert an integer number to a binary string. The result is a valid Python expression. If x is not a Python
id(object) Return the “identity” of an object. This is an integer which is guaranteed to be unique and constant for this object
class bytes([source[, encoding[, errors]]]) Return a new “bytes” object, which is an immutable sequence of integers in the range
setattr(object, name, value) This is the counterpart of getattr(). The arguments are an object, a string and an
hash(object) Return the hash value of the object (if it has one). Hash values are integers. They are used to quickly compare dictionary keys during a dictionary
format(value[, format_spec]) Convert a value to a “formatted” representation, as controlled by format_spec
Page 3 of 7