• roz@lemmy.blahaj.zone
    link
    fedilink
    English
    arrow-up
    6
    ·
    8 hours ago

    What’s worse, that Python doesn’t need semicolons, or that if used, they are ignored? 🤔

    • usernamesAreTricky@lemmy.ml
      link
      fedilink
      arrow-up
      2
      ·
      3 hours ago
      >>> print("proof by counterexample in a python REPL")
      proof by counterexample in a python REPL
      >>> x = 2; print(x)
      2
      >>> print("this is not ignored"); print("it's just mostly useless"); print("but you can use as many as you want")
      this is not ignored
      it's just mostly useless
      but you can use as many as you want