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.

    • Kairos@lemmy.today
      link
      fedilink
      arrow-up
      1
      arrow-down
      1
      ·
      edit-2
      15 hours ago

      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
        link
        fedilink
        arrow-up
        2
        arrow-down
        1
        ·
        14 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
        link
        fedilink
        arrow-up
        1
        arrow-down
        1
        ·
        12 hours ago

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

        Sooooo, any language?