Files
openide/python/testData/resolve/NestedListComp.py

4 lines
116 B
Python

lst1 = [[1,2,3],[4,5,6],[7,8,9]]
lst2 = [xx for yy in lst1 for xx in yy]
# <ref>