what's so bad about python

what's so bad about python

It's All Fucked Shirt $22.14

Unattended Children Pitbull Club Shirt $21.68

It's All Fucked Shirt $22.14

  1. 2 months ago
    Anonymous

    i forgot what type my function arguments

    • 2 months ago
      Anonymous

      typehints exist

      • 2 months ago
        Anonymous

        typescript has those too
        wonder why my coworkers still get so many fricking rollbacks in prod

        It's easy to write
        It can do just about anything, albeit a bit slower
        It has lots of jobs
        Everything about it literally just werks

        >the bootcamper fears the static type system

    • 2 months ago
      Anonymous

      hardware issue

      • 2 months ago
        Anonymous

        >type system
        >hardware issue
        so many chucklefricks on IQfy these days

        • 2 months ago
          Anonymous

          kek, hes mad

          • 2 months ago
            Anonymous

            imagine getting filtered by static type systems

        • 2 months ago
          Anonymous

          The hardware issue is your brain dummy

  2. 2 months ago
    Anonymous

    It's easy to write
    It can do just about anything, albeit a bit slower
    It has lots of jobs
    Everything about it literally just werks

    • 2 months ago
      Anonymous

      this was my take
      there's also libraries for fricking everything
      i was just poking around a conda env i had and there's one to do weird stylistic transformations on arabic text that i have for some reason

    • 2 months ago
      Anonymous

      your list is problematic for IQfy tinker trannies

    • 2 months ago
      Anonymous

      >Everything about it literally just werks
      Until it doesn't. Not your problem if you're getting paid tho.

    • 2 months ago
      Anonymous

      >It's easy to write
      What makes it easier than, say, Java?

      • 2 months ago
        Anonymous

        A combination of libraries being available for everything and the syntax not being as strict. If I want to automate something quickly I'm not going to use fricking Java.

    • 2 months ago
      Anonymous

      >albeit a bit slower
      Isn't there an interpreter now that translates it to C?

      • 2 months ago
        Anonymous

        cython is not that much faster. you mostly use it to link to c libraries. not that it's a bad thing. pypy is probably the fastest you can do with python.

  3. 2 months ago
    Anonymous

    Python is good because it's not J*va
    C# is good because it's not J*va
    C++ is good because it's not J*va

    • 2 months ago
      Anonymous

      Java

  4. 2 months ago
    Anonymous

    It’s SLOOOOOOOOOOWW. WOW LOOK AT ME IM A BIG SNAKE RAWR SSSTHHSS :33 WATCH ME SLITHER

    • 2 months ago
      Anonymous

      The ease to write encourages messy code.

      A. It is faster than a human.
      B. If most of the runtime is spent waiting for other machines to respond, speed doesn't matter (as much).
      C. In some cases, development speed is more important than the speed of the product.
      D. You can use C++ or Rust for the parts that require speed, Python binds with these languages well.

      • 2 months ago
        Anonymous

        >The ease to write encourages messy code.
        stockholm syndrome mentality. python can lead to ugly programs but it has nothing to do with python being easy to use

      • 2 months ago
        Anonymous

        >The ease to write encourages messy code.
        but this is why it, perl, and bash are the best for simple little scripts. Why make a perfect program when you can make a quick and messy, good enough script?

        • 2 months ago
          Anonymous

          Writing bash scripts is all I know how to do and the ones I make are ridiculously convoluted. Figuring out how to do it in the first place has solved so many problems I had for years and made it possible to get my computers to do what I want them to do instead of hoping to find something that already exists to do specific tasks. Now I'm at the point where I can at least modify existing python scripts to make them work how I need them to. Maybe I'll get to the point where I actually learn python.

          • 2 months ago
            Anonymous

            >Maybe I'll get to the point where I actually learn python.
            if you're able to understand bash enough to make complex scripts out of it, python should be much easier. You're just scaring yourself into not doing it, it'll take you an afternoon of googling and reading docs/stackoverflow and you'll have a reasonable grip on the language. Rest comes from application, as with everything.

  5. 2 months ago
    Anonymous

    bloatmaxx

  6. 2 months ago
    Anonymous

    It has a shitty gradual typing system. Types feel like they are second class. Otherwise its ok

    • 2 months ago
      Anonymous

      >types feel like a second class citizen
      because they are
      why not use java and create infinite beanfactorymanagers while you're at it?

      • 2 months ago
        Anonymous

        >thinking types = objects
        Ngmi

      • 2 months ago
        Anonymous

        >beanfactorymanagers
        your mistake was either buying a copy of the GoF design patterns books or thinking it’d be a good idea to work at an office in New Bangalore

      • 2 months ago
        Anonymous

        >le epic oop exaggeration maymay

  7. 2 months ago
    Anonymous

    it's pretty great. it has some technical issues like scoping problems and cached args but in general it's peak comfy.
    imo lua > python > ... > javascript

  8. 2 months ago
    Anonymous

    Nothing.

  9. 2 months ago
    Anonymous

    Because it's easy to use, if you look at a working-correctly piece of code, there is a 75% change it was written by someone moronic.
    And then you go
    >WTF python is moronic

  10. 2 months ago
    Anonymous

    on linux
    >noo, install that specific version for this app
    >no you cannot do it without virtual env
    >spend an hour figuring out how to get dependencies right
    package managers

    • 2 months ago
      Anonymous

      Figuring out the dependencies usually takes minutes, not an hour. As far as python goes the only package manager I'm interfacing with is pip.

    • 2 months ago
      Anonymous

      Also I should say using python on Windows isn't really any different. Behaves exactly the same as it does on Linux.

      • 2 months ago
        Anonymous

        my brother in christ those are the only two places you use python

    • 2 months ago
      Anonymous

      Most of IQfy is students and NEETs who program only has a hobby. They don't see the merits of a language beyond how fast and how much "street cred" you get from using it. That being said the dynamic type system is a problem and there would be great benefit from a TS equivalent becoming an industry standard (Mypy isn't one, its a static code analysis tool).

      >no you cannot do it without virtual env
      Literally as easy as
      $ python -m venv venv
      $ source venv/bin/activate
      $ pip install -r requirements.txt

  11. 2 months ago
    Anonymous

    Indentation determining code blocks rather than curly braces was the biggest mistake in computing history. Literally unreadable nonsense.

    • 2 months ago
      Anonymous

      also you're blind

  12. 2 months ago
    Anonymous

    nothing

  13. 2 months ago
    Anonymous

    nothing, except that it allows flabby code to exist. this is great for my glorified shell scripts which just needed to do raw file manipulation or something crazy like syscalls.
    but those scripts are not deployed except to my own shit, and i never share them.

    when you share python code, the code can be very shitty, flabby and evil. with other languages this is illegal at compile-time usually.
    great for prototyping even for something that's complex
    great for scripting, especially when it's complex
    and great for quick and shitty websites leveraging massive frameworks that needed to be done yesterday

    but it's never the best quality. it's like fast food for programming. it's quick and it's flabby. Use something more strict if you're gonna maintain it for long.

  14. 2 months ago
    Anonymous

    my autistic friend doesn't like it because the syntax is weird

  15. 2 months ago
    Anonymous

    https://openpsychometrics.org/tests/FSIQ/1.php
    python filters low spatial iq homies
    esl btw (yes i'm coping)

Your email address will not be published. Required fields are marked *