For Loops

Crafting scripts properly in Python has always been a challenge for me. However, I think I’m getting a better understanding of how they work and how to make them work properly. One of the most common loops one may find in Python, especially in data analysis, is the For Loop. Using the For Loop, one…… Continue reading For Loops

Dictionaries in Python

A dictionary in python is a collection of unordered data. By unordered, we mean it is not in any particular order. To contrast this concept, lists and arrays in Python contain ordered data with an index. The value of the first item in the list is always that value unless it is changed. The most…… Continue reading Dictionaries in Python