In python, almost everything is an object. This includes variables like String and Integers and containers like lists and dictionaries. Given that everything is an object, what are data types? Data types are simply how you classify your objects. If you have an object with the type of String, then that object will have all …
Category
Showing: 11 - 20 of 39 RESULTS
Programming
This section contains posts about programming and scripting
S.O.L.I.D. Principles of Object Oriented Design
In a previous article, we talked about objects and classes, and how they can help you better organize your code. The SOLID principles of Object Oriented Design are a set of principles you can follow to make better use of objects and classes. These principles are not rules. They are more guidelines to try to …