exec(object[, globals[, locals]]) This function supports dynamic execution of Python code. object must be either a
abs(x) Return the absolute value of a number. The argument may be an integer or a floating point number. If the argument is
len(s) Return the length (the number of items) of an object. The argument may be a sequence (such as a string, bytes, tuple
filter(function, iterable) Construct an iterator from those elements of iterable for which function returns
hasattr(object, name) The arguments are an object and a string. The result is True if the string is the name of
class frozenset([iterable]) Return a new
id(object) Return the “identity” of an object. This is an integer which is guaranteed to be unique and constant for this object
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
Page 2 of 7