Another "Problems With Python" List
This: https://darkf.github.io/posts/problems-i-have-with-python.html
Summary.
- Slow.
- Threads.
- Legacy Python 2 Code.
- Some Inconsistencies.
- Functional Programming.
- Class Definitions Don't Have Enough Features.
- Switch Statement.
Responses.
- Find the 20% that needs a speedup and write that in C. Most of the time that's already available in numpy. The …