php vs python
Erik Max Francis
max at alcyone.com
Sun Jan 5 00:47:10 EST 2003
More information about the Python-list mailing list
Sun Jan 5 00:47:10 EST 2003
- Previous message (by thread): php vs python
- Next message (by thread): php vs python
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
aonaran at yahoo.com wrote: > With the introduction of iterators in python 2.2 (IIRC) it's even > simpler: > > for key, val in d.items(): > print key,'=',val This actually doesn't have anything to do with iterators, this has been good Python since 1.5.2 at least. In 2.x, the dictionary itself is an iterable object and iterating over it is equivalent to iterating over its keys. -- Erik Max Francis / max at alcyone.com / http://www.alcyone.com/max/ __ San Jose, CA, USA / 37 20 N 121 53 W / &tSftDotIotE / \ War is a continuation of policy by other means. \__/ Karl von Clausewitz CAGE / http://www.alcyone.com/pyos/cage/ A cellular automaton simulation system in Python.
- Previous message (by thread): php vs python
- Next message (by thread): php vs python
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list