OOP: Inheritance

One of the main benefits of using Object Orientated Programming is the class feature. I like to think of class objects as a convenient container I can optimize for the situation. For example, in the context of data science you may have several variables you want to keep together or interact with one another. Sometimes… Continue reading OOP: Inheritance

Object Orientated Class is in Session

Up until recently I had been building up to Object Orientated Classes. I briefly discussed variables and functions, the building blocks of a class. While my take is a little simple I like to think of classes as custom data structures all their own. They allow you to associate any set of attributes that you… Continue reading Object Orientated Class is in Session

Object Orientated Python Editor Update

My last post I had used a data structure to handle the words and their counts, but sorting that structure was messy. I played around with a few songs from a few major artists and bands, and found their song was typically between 374 and 601 words long. The few I dove deeper into generally… Continue reading Object Orientated Python Editor Update