this post was submitted on 18 Nov 2024
27 points (93.5% liked)

Python

6378 readers
64 users here now

Welcome to the Python community on the programming.dev Lemmy instance!

๐Ÿ“… Events

PastNovember 2023

October 2023

July 2023

August 2023

September 2023

๐Ÿ Python project:
๐Ÿ’“ Python Community:
โœจ Python Ecosystem:
๐ŸŒŒ Fediverse
Communities
Projects
Feeds

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] Hugin@lemmy.world 1 points 13 hours ago

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.