Data Structures and Loops in Python
This post is going to be the first post that I write on the topic of Python and will cover data structures and various implementations. I will be discussing lists, dictionaries, sets and tuples as well as loops and data structures. // These are notes taken from my lectures. Lists The key points of a list are that they are ordered, flexible (don’t need to be initialised with a size) and can contain different data types within the list i.e....Read more