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

Python

7243 readers
35 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
[–] FooBarrington@lemmy.world 2 points 23 hours ago (1 children)
[–] LodeMike@lemmy.today 0 points 23 hours ago* (last edited 23 hours ago) (2 children)

Python is good if you need to write a hundred or two or maybe three lines of code.

Its not good for large programs.

Conversely its good for large systems. Facebook makes all its microservices in python because the data model and how that scales along with data safety matters much more than a microservice taking 10-100 times as long to execute.

I consider it a scripting language. Just one without integer++ for some goddamn reason.

[–] FooBarrington@lemmy.world 1 points 23 hours ago

My issue with Python is that so many "pythonic" practices lead to horrible-to-read code. List comprehensions are nice, except for when they go more than one level deep. kwargs leads to horrible code. Lots of valid Python code cannot be typed correctly, which makes editor inference far worse. Don't get me started on metaclasses and the like.

Python right now is basically what JavaScript was before TS.

[–] el_bhm@lemm.ee 0 points 21 hours ago

Python is good if you need to write a hundred or two or maybe three lines of code

Sooooo, any language?