Just some stuff about me.
Here's my dotfiles repository.
What links here:
I found a great explanation of nested comprehensions:
Basically, these for loops:
outer = [[1,2], [3,4]]
for inner in outer:
for num in inner:
num
Become:
[num for inner in outer for num in inner]