If I keep calling len() on a very long list, am I wasting time, or does it keep an int count in the background?
|
|
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 optimised for clarity 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 whether it is significant in your code. You will, like most people, very likely be wrong in your guesses about which parts of your program are slowest. Remember that premature optimisation is the root of all evil, in the words of Donald Knuth. Only focus on the speed of code that you have measured the speed of, to know whether it's worth the cost of changing how it works. |
||||
|
|
A Python "list" is really a resizeable array, not a linked list, so it stores the size somewhere. |
|||
|
|
|
The question has been answered (
Yep, not really slower. |
|||
|
|
|
It has to store the length somewhere, so you aren't counting the number of items every time. |
|||
|