class dict(**kwarg) class dict(mapping, **kwarg) class dict(iterable, **kwarg) Create
isinstance(object, classinfo) Return true if the object argument is an instance of the classinfo argument
pow(x, y[, z]) Return x to the power y; if z is present, return x to the power y
dir([object]) Without arguments, return the list of names in the current local scope. With an argument, attempt to return a
iter(object[, sentinel]) Return an iterator object. The first argument is interpreted
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
divmod(a, b) Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder
setattr(object, name, value) This is the counterpart of getattr(). The arguments are an object, a string and an
reversed(seq) Return a reverse iterator. seq must be an object which has a
class property(fget=None, fset=None, fdel=None, doc=None) Return a property attribute. fget
Page 4 of 7