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?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

In Python, it's more typical to use the array-based list class than Lisp-style linked lists. But it's not too hard to convert between them:

def cons(seq):
    result = None
    for item in reversed(seq):
        result = (item, result)
    return result

def iter_cons(seq):
    while seq is not None:
        car, cdr = seq
        yield car
        seq = cdr

>>> cons([1, 2, 3, 4, 5, 6])
(1, (2, (3, (4, (5, (6, None))))))
>>> iter_cons(_)
<generator object uncons at 0x00000000024D7090>
>>> list(_)
[1, 2, 3, 4, 5, 6]
link|improve this answer
feedback

Note that Python's lists are implemented as vectors, not as linked lists. You could do lst.insert(0, val), but that operation is O(n).

If you want a data structure that behaves more like a linked list, try using a Deque.

link|improve this answer
feedback

You can quite trivially define a class that behaves much like cons:

class Cons(object):
    def __init__(self, car, cdr):
        self.car = car
        self.cdr = cdr

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.

link|improve this answer
feedback

No. cons is an implementation detail of Lisp-like languages; it doesn't exist in any meaningful sense in Python.

link|improve this answer
so there's no way to "condense" lists like from [1, 2, [3, 4, 5, [4, 1]]] to [1, 2, 3, 4, 5, 4, 1]? – tekknolagi Nov 10 '11 at 1:18
1  
There is, but cons isn't it. See: stackoverflow.com/questions/406121/… – duskwuff Nov 10 '11 at 1:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.