this post was submitted on 25 Jun 2025
25 points (90.3% liked)

Python

7243 readers
13 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 2 years ago
MODERATORS
 

This is a question for people more experienced with Python, but everybody feel free to answer if you feel like you can provide something decent to the discussion.

Also feel free to explain why you feel that way and your experiences with Python and the paradigms.

you are viewing a single comment's thread
view the rest of the comments
[–] Custodian6718@programming.dev 7 points 1 day ago (1 children)

I do agree except for the last sentence because I do not think that OOP is the silver bullet for everything.

[–] Diplomjodler3@lemmy.world 4 points 1 day ago (1 children)

I was talking about Python specifically. And no, of course it's not a silver bullet. It's a solution for structuring your code base in a way that lets you not lose track of what does what.

[–] phutatorius@lemmy.zip 1 points 16 hours ago

It's also a good way to structure your code to effectively model your problem domain.

And there are also many cases where that's not true, so use it where it makes sense and don't use it where it doesn't.