I have no problem for understanding this:
a = [1,2,3,4] b = [x for x in a]
I thought that was all, but then I found this snippet:
It can be written like this
result = [] for xs in a: for x in xs: result.append(x)
You can read more about it here