On 24 Apr, 17:19, Paul Rubin <http://[email protected]> wrote: > Mark Tarver <[email protected]> writes: > > But are Python lists also indistinguishable from conventional > > Lisplists for list processing. > > Forgot to add: you might look athttp://norvig.com/python-lisp.html > > Mark Tarver <[email protected]> writes: > > But are Python lists also indistinguishable from conventional > > Lisplists for list processing. > > They are very different. There is nothing like cons or nconc. > You can't convert two lists to a single longer list with nconc, > etc.
Ah; so this def cons (x,y): return [x] + y is not accurate? Mark -- http://mail.python.org/mailman/listinfo/python-list
