Python Overview Reformatted
Python Overview Reformatted
Lists : Group multiple variables together that is Mutable, Ordered, Heterogeneous, can
contain duplicates
Dictionary : A collection of a set of key:value pairs, with the requirement that the keys are
unique within a dictionary.
Function : A block of code which only runs when it is called. Some reusable code that takes
arguments as input, does some computation, and then returns a result or results.
Parent Class : The class being inherited from, also called base class
Child Class : The class that inherits from another class, also called derived class