What are the differences between these built-in Python data types: list, sequence and slice? As I see it, all three essentially represent what C++ and Java call array.
|
"Sequence" is not an object, more like an informal interface some objects like |
|||||||||
|
|
You're mixing very different things in your question, so I'll just answer a different question ;-P You are now asking about one of the most important interface in Python:
The common adapter to all iterables is the iterator. |
||||
|
|
|
A list is a sequence but a sequence is not necessarily a list. A sequence is any type that supports the sequence interface ("protocol"). This is done by duck-typing rather than through a strict inheritance hierarchy. Note that sequences are containers, but containers are not necessarily sequences. (sequences are, well, sequential!) See http://docs.python.org/library/stdtypes.html#sequence-types-str-unicode-list-tuple-buffer-xrange Slice objects are generally created implicitly via syntactic sugar ( See http://docs.python.org/reference/datamodel.html#specialnames Lists are comparable to arrays. I'm not certain, but I think it's implemented in cPython as a dynamically expanding array. However, the interface makes it so that it's more like a C++ STL Vector than just a plain old array. |
||||
|
|
|
Strictly speaking, a slice is a type which represents a range of indices, e.g. a start, stop, and a step. A slice isn't a container type at all. You can use a slice to index an list, resulting in a new list which is a copy of a sublist of the original list. Lists differ from C++ arrays in that they're heterogenous; the elements are not required to be of the same type. And as MYYN has already pointed out, "sequence" isn't a Python type at all but rather a description of a variety of built-in types. |
|||
|
|
Read more ... http://docs.python.org/glossary.html |
||||
|
|