python double nested list comprehension code example
Example 1: python list comprehension double for
[x for y in collection for x in y] # [A for B in C for D in E]
Example 2: python nested list comprehension
matrix = [[j for j in range(5)] for i in range(5)]