May
23rd
Fri
23rd
Why Python List Comprehensions Are Great
So if you had the string
POST /wfs?request=Null&log&foo:bar=1,2:3,2:4,2&baz=x,y:y,z
and wanted to turn it into the list
['foo:bar:1,2', 'foo:bar:3,2', 'foo:bar:4,2', 'baz:x,y', 'baz:y,z']
How…