I\'m a Python newbie and one of the things I am trying to do is wrap my head around list comprehension. I can see that it\'s a pretty powerful feature that\'s worth learning.>
Something like this:
[[c, a] for c, a in zip(cities, airports)]
Alternately, the list constructor can convert tuples to lists:
list
[list(x) for x in zip(cities, airports)]
Or, the map function is slightly less verbose in this case:
map
map(list, zip(cities, airports))