All Questions
2 questions
4
votes
1
answer
4k
views
Tips for Tail Call Recursion in Python [duplicate]
Ok, Python doesn't have tail call optimization.
But for those who think better recursively than "looply", whats the best practices to write code??
1000 stack calls are enough for many cases, but ...
23
votes
11
answers
8k
views
If we can do functional programming with Python, do we need a specific functional programming language? [closed]
Using generators and lambda, we can do functional programming with Python. You can also achieve the same thing with Ruby.
So the question is: why do we need specific functional programming languages ...