I absolutely love writing Python code, but some parts of the community drive me nuts.
Q: Why can't Python recursion be faster?A: "Deep recursion is evil" - https://stackoverflow.com/questions/67988828/why-is-python-recursion-so-expensive-and-what-can-we-do-about-it
WTF. Deep recursion is freaking awesome, except that Python sucks at it because it doesn't have TCO. I bet if it added TCO, the same people would be saying deep recursion is the best thing ever.