My standard response when someone asks me how I deal with Python being such a slow language is that Python is by far the fastest to write, cleanest, more maintainable programming language I know, and…
Yup. Part of what makes python so easy and fast is the lack of things built into languages so they are maintainable in a large project.
Take duck typing. It’s so easy when you have a small project that can fully understood by a developer. Get into a big project with 10000 classes and you need explicit classes and interfaces just to understand what is going on.
Yup. Part of what makes python so easy and fast is the lack of things built into languages so they are maintainable in a large project.
Take duck typing. It’s so easy when you have a small project that can fully understood by a developer. Get into a big project with 10000 classes and you need explicit classes and interfaces just to understand what is going on.