• four@lemmy.zip
    link
    fedilink
    English
    arrow-up
    1
    ·
    16 hours ago

    What I like about using if and else for that is that you’re already using those keywords for branching in other parts of the code.

    Though my least favorite is probably Python’s:

    x = "foo" if y > 5 else "bar"
    

    It just seems backwards to me

    • thebestaquaman@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      14 hours ago

      While Python’s version does feel a bit backwards, it’s at least consistent with how list comprehensions are set up. They can also feel a bit “backwards” imo, especially when they include conditionals.

      • four@lemmy.zip
        link
        fedilink
        English
        arrow-up
        1
        ·
        13 hours ago

        List comprehension is another thing I don’t like about Python :)

        There’s more of those, but one thing I do like about Python is that I get paid for writing it, so I try not to complain too much