Baba <raoul...@gmail.com> writes: > my questios: > - would you agree that recursive is not ideal for generating a list? > (in this particular case and in general)
In Python that is probably correct in the vast majority of cases for two reasons: * lists in Python are implemented as arrays; * there is no tail call optimisation in Python. But not necessarily in other languages. In Lisp for example, recursion is *the* natural way of generating lists. -- Arnaud -- http://mail.python.org/mailman/listinfo/python-list