On Feb 2, 3:19 pm, Larry Bates <[EMAIL PROTECTED]> 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(). -- http://mail.python.org/mailman/listinfo/python-list
On Feb 2, 3:19 pm, Larry Bates <[EMAIL PROTECTED]> 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(). -- http://mail.python.org/mailman/listinfo/python-list