Day 6: Sequences, Comprehensions, Objects

2.4 Sequences

zip() - pairs elements from multiple iterables into tuples. Note: stops once the shortest input sequence is exhausted. Some main uses:

The dictionary creation is a useful trick when processing data from different formats to turn them into dictionaries. The general form is:

headers = ["name", "age", "city"]
row = ["Alice", 25, "New York"]
record = dict(zip(headers, row))
print(record)  # {'name': 'Alice', 'age': 25, 'city': 'New York'}

This is useful for a number of reasons:

2.5 collections module

from the author, “collections module is one of the most useful library modules in all of Python”. useful when there is a need to tabulate values. We briefly touched on the following objects for data handling: Counter , defaultdict and deque

Counter - useful for counting occurrences of elements in an iterable. Some examples:

defaultdict provides default values for missing keys preventing KeyError

deque - short for double-ended queue optimized for fast appends and pops from both ends, making it more efficient than a list for queue-like operations.

2.6 List, Set and Dictionary Comprehensions

come from set-builder notation in math.

a = [ x * x for x in s if x > 0 ] # Python

is equivalent to

$$ a = \{ x^2 \mid x \in s, x > 0 \} $$

Some comon usecases:

stocknames = [s['name'] for s in stocks]
a = [s for s in stocks if s['price'] > 100 and s['shares'] > 50 ]
cost = sum([s['shares']*s['price'] for s in stocks])

2.7 Objects

Finally clicked what it means that everything in Python is an object. The author goes through different examples that were really helpful. To revisit often in future.

Onto Program Organization tomorrow. Feeling great about my progress so far and exited learn more!

March 31, 2025