Python(2.5) reads an input file FASTER than pure C(Mingw)

n00m n00m at narod.ru
Wed Apr 30 09:57:08 EDT 2008


>>> a = ['zzz', 'aaa']
>>> id(a[0]), id(a[1])
(12258848, 12259296)
>>> a.sort()
>>> id(a[0]), id(a[1])
(12259296, 12258848)
>>>



More information about the Python-list mailing list