General Iterables
len(iterable)
Loop Over Two Iteratables
Stops at the shorter of the two and works for an arbitrary number of iterables
Functional
In python3, map makes an generator object. Wrap with list() to make a list again
Map
Filter
Reduce
Last updated