A hard exercise to help build the right mental model for Python data.

The “Solution” link visualizes execution and reveals what’s actually happening using 𝗺𝗲𝗺𝗼𝗿𝘆_𝗴𝗿𝗮𝗽𝗵: https://github.com/bterwijn/memory_graph

  • farmgineer@nord.pub
    link
    fedilink
    English
    arrow-up
    3
    ·
    14 hours ago

    My brain threw a compile error on |=. I have no idea what that does without looking it up (I’ve basically never touched python having mostly worked in perl/shell back in the day and I rarely need scripting languages today). I’m also not sure what the pipe operator on its own is doing there.

    • esa@discuss.tchncs.de
      link
      fedilink
      arrow-up
      1
      ·
      10 hours ago

      I didn’t have previous exposure to that exact syntax either, but:

      • Python and plenty other languages have assignment variations with an operator like +
      • | in plenty of languages means logical OR
        • possibly bitwise, but that seems unlikely in Python
      • Dicts are sorta complex siblings of sets
      • In terms of sets, OR is equivalent to a union

      Hence, a |=b should have the same meaning as a = a | b or a = a.union(b)

      and then the quiz is about basically implementation details and what the actual semantics winds up being in a language like python, where stuff is mutable by default and references are implicit (even though the zen of python states a preference for being explicit)

      • bterwijn@programming.devOP
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        3 hours ago

        There is one important difference between a |= b and a = a | b, that is one part that makes this exercise difficult. See the dictionary docs (https://docs.python.org/3/builtins/stdtypes.html#dict):

        d |= other Update the dictionary d with keys and values from other, which may be either a mapping or an iterable of key/value pairs. The values of other take priority when d and other share keys. Added in version 3.9.

        Pick your answer and check the Solution link.

        The zen of Python lies unless you’re Dutch. I’m Dutch and when I look out of my office I see the CWI where Guido wrote the original Python versions back in the day, see “Python the documentory” on YouTube.

  • apparia@discuss.tchncs.de
    link
    fedilink
    English
    arrow-up
    5
    ·
    1 day ago

    Nice puzzle and tool. I picked the right answer but I wasn’t overly confident.

    You could list {1: [100]} as another possible answer, if you assume:

    spoiler

    b |= {...} is equivalent to b = b | {...}, but you also realise the lists are never deep-cloned.

  • eleijeep@piefed.social
    link
    fedilink
    English
    arrow-up
    16
    ·
    1 day ago

    The | and |= operators for dict were added in 3.9 which was released in 2020, so it’s a relatively recent feature.

    I like having an operator for set union but I don’t like that a |= b has different semantics to a = a|b. This violates the principle of least surprise, since the former is supposed to be a shorthand for the latter.

      • lad@programming.dev
        link
        fedilink
        English
        arrow-up
        3
        ·
        1 day ago

        I feel that things like this lead people to say something along the lines of ‘mutability was a mistake’

        I’m only half serious, but this is really surprising without Python background

        • bterwijn@programming.devOP
          link
          fedilink
          arrow-up
          2
          ·
          1 day ago

          If you don’t want mutability you have to go to a pure functional language like Haskell, but then you have to copy a big list every time you make a change. There are ways to optimize copying by secretly sharing data behind the scene but you pay a performance price in some way. Then again, Python is slow and has mutability but popular for other reasons.

          • lad@programming.dev
            link
            fedilink
            English
            arrow-up
            2
            ·
            16 hours ago

            I don’t think mutability is wrong as a concept, albeit I enjoyed learning and toying with Haskell, but I really think these functions in Python should have been two sets of operations, one set to do what a += b does and one set to do what a = a + b does.

            I’ve been doing C++ for quite some time and amount of implicit things that happen magically and not everyone get them right and this leads to bugs and confusion had really grown on me with time, and I feel like this is the same pattern here, where we get implicit magic instead of being clear with intentions and results

            • bterwijn@programming.devOP
              link
              fedilink
              arrow-up
              2
              ·
              15 hours ago

              I think the confusion comes from a += b being equivalent to a = a + b for immutable types, so some people generalize that incorrectly to mutable types too. Otherwise I think it’s pretty clear a += b mutates a, and a = a + b first computes a + b and then reassigns that to a so that its identity changes, just like in c = a + b.

              If you implement these operations in a class you have to implement each dunder, __iadd__(self, other) and __add__(self, other) separately, same thing in C++.

              • lad@programming.dev
                link
                fedilink
                English
                arrow-up
                1
                ·
                15 hours ago

                It is only clear if you already have a model of how labels work in Python and while it is understandable to me now, I wouldn’t say this is anything I would expect

                Then again, shadowing variables is allowed in other languages and is also a source of confusion and mistakes at times

          • a_non_monotonic_function@lemmy.world
            link
            fedilink
            arrow-up
            4
            ·
            24 hours ago

            Like anything else, these sorts if issues are rather murky and are directly impacted by the user’s competence in the tools.

            Does python have obvious overhead issues? Yes.

            Does Python have to be super inefficient? No.

            Take basic set operations, for example. Do it manually in the language and it will be dog slow. Do it using the set class? You are leveraging the speed of the underlying C implementation.

            E.g., In competitive programming eventually need C or Java, but a strong Python user can move the bar significantly in terms of how many problems are possible with Python.

            If you don’t want mutability you have to go to a pure functional language like Haskell, but then you have to copy a big list every time you make a change. There are ways to optimize copying by secretly sharing data behind the scene but you pay a performance price in some way.

            I don’t believe this to be the case. The immutability is precisely why efficient structural sharing is possible without screwing up other data structures. And for standard stuff, it is actually happening behind the scenes already.

            You see similar claims about recursion in general, but those claims are often so broad that they don’t hold water. I mean, yea, if your language sucks at optimizing recursion it isn’t going to be a pleasant experience, but tail call elimination, lazy evaluation, etc. mean you can write some really awesome and efficient code.

            I think the bigger problem is that it takes a lot of time to internalize what is going on under the hood when you make a call or initialize a data structure.

  • MrWrinkles@leminal.space
    link
    fedilink
    arrow-up
    10
    ·
    1 day ago

    As a C programmer, this reads as a shitpost lol. Best I can do is interpret this in Tcl, but I’m lost with |=

  • b34k@lemmy.world
    link
    fedilink
    arrow-up
    3
    ·
    1 day ago

    Not too familiar with the union operator for dicts, but that result was not what I expected.

    • bterwijn@programming.devOP
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      1 day ago

      The dict union operator is similar to that of set, but in addition the right operand overwrites values of keys of the left operand. It’s a nice operator once you get used to it.

      Easy to make a mistake with this exercise:

      • first realize b = b | {3: []} makes a shallow copy
      • then realize the shallow copy still references the value of key 2 in a so we can still append to that and change a
  • Daedskin@lemmy.zip
    link
    fedilink
    arrow-up
    1
    ·
    1 day ago

    Couldn’t get the solution page working on mobile (none of the buttons seemed to do anything); but my guess is it would be {1: []} due to |= silently using __or__ and an assignment, meaning b now holds a new reference

    • bterwijn@programming.devOP
      link
      fedilink
      arrow-up
      5
      ·
      1 day ago

      This is what the solution link is supposed to give you at the end of the execution animation:

      It’s hard to support all mobile browsers, on some it does work.