Slide 35
Slide 35 text
TCO (Tail call optimization)
Tail call optimization in Python is not natively
supported due to Python's recursion limit and the lack
of tail call optimization in its interpreter. However, it can
be simulated using a loop to replace recursive calls with
iterative ones and with externals tools.
Programing languages like haskell ,
Scala, Clojure, Erlang, and Elixir have TCO