• 3 Posts
  • 551 Comments
Joined 2 years ago
cake
Cake day: July 7th, 2023

help-circle









  • uv mostly gets rid of the “venv activation” thing (mostly bc you can still use it if you really want, but you don’t need to), you can do uv run main.py and it’ll just work, no need to even install packages explicitly, it’ll also do that for you and make sure your uv.lock is in sync with your environment.

    it’s the most hassle-free experience I’ve had with python, by a long shot.








  • Eager Eagle@lemmy.worldtoProgramming@programming.devWhy Is Python So Popular in 2025?
    link
    fedilink
    English
    arrow-up
    5
    arrow-down
    2
    ·
    edit-2
    2 months ago

    It does make it easier to read. We primarily use indentation to match brackets, so clearly, indentation is the most important readability feature between the two, not brackets.

    Try reading the same piece of code: without brackets, and then without whitespaces and tell me which is better.

    Whitespaces as syntax force you to indent your code properly and not be misleading.