At least for Python (since I'm more familiar with Python code and the Python ecosystem): progressive typing lets you incrementally add typing to an existing Python codebase. So you can have at least some of the benefits of typing for new or updated code without needing to re-write in a new language.
ReflectedImage|2 months ago
You get the complexity and slower development times of using statically typed languages along with the bad performance of using dynamically typed languages.
ck45|2 months ago
jaapz|2 months ago
If anything, it speeds up development. Plus it helps give more confidence in the correctness of your code.
rurban|2 months ago
Common Lisp showed you the way. But almost none looked at it. Only PHP did.