For, While, and “Do… While” Loops

Programming can be pretty loopy sometimes, and there are a few different types of primary loops you will encounter. The two most common loops are “for” and “while”. There are a few different reasons why you would use a loop, and I think the most common reason is to work through an array index by… Continue reading For, While, and “Do… While” Loops

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