Re: List Performance
- From: Maric Michaud <maric@xxxxxxxxxxxxx>
- Date: Mon, 30 Jun 2008 11:27:09 +0200
Le Monday 30 June 2008 09:23:46 Peter Otten, vous avez écrit :
Ampedesign wrote:
If I happen to have a list that contains over 50,000 items, will the
size of the list severely impact the performance of appending to the
list?
No.
$ python -m timeit -n20000 -s"items = []" "items.append(42)"
20000 loops, best of 3: 0.554 usec per loop
$ python -m timeit -n20000 -s"items = [42]*10**6" "items.append(42)"
20000 loops, best of 3: 0.529 usec per loop
But it surely could, if the box happens to be out of memory and begin to swap,
while it's not, of course, an issue with python lists...
--
_____________
Maric Michaud
.
- References:
- List Performance
- From: Ampedesign
- Re: List Performance
- From: Peter Otten
- List Performance
- Prev by Date: Re: tkinter, loading image error, TclError: couldn't recognize data in image file "C:/users/me/desktop/images/blob4.jpg"
- Next by Date: Re: Help with Borg design Pattern
- Previous by thread: Re: List Performance
- Next by thread: Re: List Performance
- Index(es):
Relevant Pages
|