dir([object]) Without arguments, return the list of names in the current local scope. With an argument, attempt to return a
class dict(**kwarg) class dict(mapping, **kwarg) class dict(iterable, **kwarg) Create
delattr(object, name) This is a relative of setattr(). The arguments are an object and a string. The string must
class property(fget=None, fset=None, fdel=None, doc=None) Return a property attribute. fget
reversed(seq) Return a reverse iterator. seq must be an object which has a
divmod(a, b) Take two (non complex) numbers as arguments and return a pair of numbers consisting of their quotient and remainder
pow(x, y[, z]) Return x to the power y; if z is present, return x to the power y
chr(i) Return the string representing a character whose Unicode code point is the integer i. For example, chr(97)
iter(object[, sentinel]) Return an iterator object. The first argument is interpreted
print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False) Print objects to the text stream file, separated
Page 4 of 7