If I keep calling len() on a very long list, am I wasting time, or does it keep an int count in the background?
|
2
|
|
|
|
|
|
Don't worry: Of course it saves the count and thus |
||
|
|
|
|
And one more way to find out how it's done is to look it up on Google Code Search, if you don't want to download the source yourself.
|
||
|
|
|
|
Write your program so that it's clear and easily maintainable. Is your program clearer with a call to ‘len(foo)’? Then do that. Are you worried about the time taken? Use the ‘timeit’ module in the standard library to measure the time taken, and see if it's significant in your code. |
||
|
|
|
|
A Python "list" is really a resizeable array, not a linked list, so it stores the size somewhere. |
||
|
|
|
|
It has to store the length somewhere, so you aren't counting the number of items every time. |
||
|
|
|
|
The question has been answered (
Yep, not really slower. |
||
|
|
