newbie/ merging lists of lists with items in common

Bart Ogryczak B.Ogryczak at gmail.com
Fri Feb 2 09:56:12 EST 2007


On Feb 2, 3:19 pm, Larry Bates <larry.ba... at websafe.com> wrote:

> l=[x for x in d.items()]

d.items() is not an iterator, you don´t need this. This code is
equivalent to l = d.items().






More information about the Python-list mailing list