Is there an equivalent of cons in Python? (any version above 2.5)
If so, is it built in? Or do I need easy_install do get a module?
|
feedback
|
|
In Python, it's more typical to use the array-based
| |||
|
feedback
|
|
Note that Python's lists are implemented as vectors, not as linked lists. You could do If you want a data structure that behaves more like a linked list, try using a Deque. | |||
|
feedback
|
|
You can quite trivially define a class that behaves much like
However this will be a very 'heavyweight' way to build basic data structures, which Python is not optimised for, so I would expect the results to be much more CPU/memory intensive than doing something similar in Lisp. | |||
|
feedback
|
|
No. | |||||||
feedback
|