A Python 3000 Question
Neil Cerutti
horpner at yahoo.com
Tue Oct 30 11:25:54 EDT 2007
More information about the Python-list mailing list
Tue Oct 30 11:25:54 EDT 2007
- Previous message (by thread): A Python 3000 Question
- Next message (by thread): A Python 3000 Question
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On 2007-10-30, Eduardo O. Padoan <eduardo.padoan at gmail.com> wrote: > This is a FAQ: > http://effbot.org/pyfaq/why-does-python-use-methods-for-some-functionality-e-g-list-index-but-functions-for-other-e-g-len-list.htm Holy Airy Persiflage Batman! Python 2.5.1 (r251:54863, Apr 18 2007, 08:51:08) [MSC v.1310 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import timeit >>> timeit.Timer('len(seq)', 'seq = range(100)').timeit() 0.20332271187463391 >>> timeit.Timer('seq.__len__()', 'seq = range(100)').timeit() 0.48545737364457864 -- Neil Cerutti
- Previous message (by thread): A Python 3000 Question
- Next message (by thread): A Python 3000 Question
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list