In <[EMAIL PROTECTED]>, bearophileHUGS
wrote:

> In CPython they are dynamic arrays, they aren't lists. Try adding
> elements at the beginning of a list compared to adding elements at the
> beginning or in the middle of a python "list" and you will see the
> efficiency differences.

Python has a list type without the "s, it's a real list.  Don't confuse
the *ADT list* with *linked lists* which are just one implementation of
the ADT list.

Ciao,
        Marc 'BlackJack' Rintsch
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to