On Sun, 25 May 2008 00:10:45 -0700, notnorwegian wrote:
Err:
In [82]: for x in set(['a', 'b', 'c']):
....: print x
....:
a
c
b
Ciao,
Marc 'BlackJack' Rintsch
sets dont seem to be so good because there is no way to iterate them.
In [82]: for x in set(['a', 'b', 'c']):
....: print x
....:
a
c
b
Ciao,
Marc 'BlackJack' Rintsch
Comment