class complex([real[, imag]]) Return a complex number with the value real + imag*1j or convert a string or
repr(object) Return a string containing a printable representation of an object. For many types, this function makes an attempt
range(stop) range(start, stop[, step]) Rather than being a function,
exec(object[, globals[, locals]]) This function supports dynamic execution of Python code. object must be either a
vars([object]) Return the
min(iterable, *[, key, default]) min(arg1, arg2, *args[, key]) Return the smallest item in an iterable or the smallest
eval(expression, globals=None, locals=None) The arguments are a string and optional globals and locals. If provided, globals
getattr(object, name[, default]) Return the value of the named attribute of object. name must be a string
classmethod(function) Return a class method for function. A class method receives the
class slice(stop) class slice(start, stop[, step]) Return a slice object
Page 1 of 7