I found this bit of code in a module I am working on:
l = opaque_function() thingys = [x for y in l for x in y]
I can\'t read this. By expe
lis=[x for y in l for x in y] is Equivalent to: lis=[] for y in l: for x in y: lis.append(x)