Python
Mutability and Containers
8 Dec 2019
Containers A container is an object that contains a reference to another object. A common example would be a List. >>> shopping_list = ["milk", "bread", "eggs"] >>> onions = "onions"…
Continue reading →
Identity Types and Values
21 Nov 2019
Everything in Python is an object. From an instance of a class to an attribute of that instance and even the class itself. An Object has three basic properties that…
Continue reading →