Monthly Archives: March 2016

Python: Data structures

Python has a number of in-built data structures. Two of the most common structures are lists and dictionaries. In Python, a list is a sequence of values and is constructed with square brackets, e.g. [1, 5, ‘abc’, 34.8]. The values in a list can be numbers or strings. A dictionary is a sequence of keys associated with values and is

Read more