4 ms·
I write a decent amount of Python, but find the walrus operator unintuitive. It's a little funky that API_KEY is available outside of the `if`, perhaps because
by tyrust 1y ago
I write a decent amount of Python, but find the walrus operator unintuitive. It's a little funky that API_KEY is available outside of the `if`, perhaps because I had first seen the walrus operator in golang, which restricts the scope to the block.
- bobbylarrybobby 1y agoThis isn't really unique to the walrus operator, it's just a general python quirk (albeit one I find incredibly annoying). `for i in range(5): ...` will leave `i` bound to 4 after the loop.
- yread 1y agoMaybe Python will get a let one day
- tyrust 1y agoOh yeah, that's a good point. Python really is a bit of a mess haha.
- nomel 1y agoOddly enough, "except" variables don't remain bound! try: x = int('cat') except Exception as e: pass print(e) # <- NameError: name 'e' is not defined So, it appears Python actually has three variable scopes (global, local, exception block)?
- agumonkey 1y agoexceptions being the exception is funny somehow
- tough 1y agovery recursive
- fuzztester 1y agoyou can say that again.
- mananaysiempre 1y agoAlso true of JavaScript pre-ES5, another language that on first glance seems to only have function scope: it actually does have block scope, but only for variables introduced in `catch` blocks. AFAIU that was the standard way for a dumb transpiler to emulate `let`.
- SerpentJoe 1y agoI wonder if that was ever popular, considering the deoptimization effects of try/catch, and given that block scope can also be managed by renaming variables.
- suspended_state 1y ago> Oddly enough It's not that odd, since it's the only situation where you cannot keep it bounded, unless you enjoy having variables that may or may not be defined (Heisenberg variable?), depending on whether the exception has been raised or not? Compare with the if statement, where the variable in the expression being tested will necessarily be defined.
- NekkoDroid 1y agoWhile somewhat true, what would this be bound to? for i in range(0): pass
- suspended_state 1y agoWell, after writing my comment, I realized that a python interpreter could define the variable and set it to None between the guarded block and the except block, and implicitly assign it to the raised exception right before evaluating the except block, when the exception as been raised. So technically, it would be possible to define the variable e in GP example and have it scoped to "whatever is after the guarded block", just like what is done with for blocks. Is there any chance this would cause trouble though? Furthermore, what would be the need of having this variable accessible after the except block? In the case of a for block, it could be interesting to know at which point the for block was "passed". So, maybe "None" answers your question?
- NekkoDroid 1y agoThe answer is: it is unbound. Intellisense will most likely tell you it is `Unbound | <type>` when you try to use the value from a for loop. Would it be possible that it could be default initialized to `None`? Sure, but `None` is a destinctivly different value than a still unbound variable and may result in different handling.
- MyOutfitIsVague 1y ago> Compare with the if statement, where the variable in the expression being tested will necessarily be defined. if False: x = 7 print(x) print(x) ^ NameError: name 'x' is not defined Ruby does this sort of stuff, where a variable is defined more or less lexically (nil by default). Python doesn't do this. You can have local variables that only maybe exist in Python.
- MyOutfitIsVague 1y agoNope, it's more complicated than that: e = 'before' try: x = int('cat') except Exception as e: e2 = e print(e) print(e2) # <- This works! print(e) # <- NameError: name 'e' is not defined It's not a scoping thing, the bound exception variable is actually deleted after the exception block, even if it was already bound before!
- librasteve 1y agolol - raku maybe weird, but at least it has sane variable scoping
- rolandog 1y agoI may be rusty, but wasn't there a "finally" scope for those situations? edit: writing from phone on couch and the laptop... looks far, far away...
- zahlman 1y agoException blocks don't create a different scope. Instead, the name is explicitly (well, implicitly but deliberately) deleted from the scope after the try/except block runs. This happens because it would otherwise produce a reference cycle and delay garbage collection. https://stackoverflow.com/questions/24271752 https://stackoverflow.com/questions/24271752 https://docs.python.org/3/reference/compound_stmts.html#except-clause https://docs.python.org/3/reference/compound_stmts.html#exce...
- afiori 1y agoThis is the type of things that make me roll my eyes at all the wtf JavaScript posts[0], yes there are a lot of random things that happen with type conversions and quite a few idiosyncrasies (my favourite is that document.all is a non empty collection that is != from false but convert to false in an if) But the language makes sense at a lower level, scopes, values, bindings have their mostly reasonable rules that are not hard to follow. In comparison python seems like an infinite tower of ad-hoc exceptions over ad-hoc rules, sure it looks simpler but anywhere you look you discover an infinite depth of complexity [1] [0] and how half of the complaints are a conjugation of "I don't like that NaNs exist [1] my favourite example is how dunder methods are a "synchronized view" of the actual object behaviour, that is in a + b a.__add__ is never inspected, instead at creation time a's add behaviour is defined as its __add__ method but the association is purely a convention, eg any c extension type need to reimplement all these syncs to expose the correct behaviour and could for funzies decide that a type will use __add__ for repr and __repr__ for add
- zahlman 1y ago> yes there are a lot of random things that happen with type conversions and quite a few idiosyncrasies... the language makes sense at a lower level, scopes, values, bindings have their mostly reasonable rules The "random things" make it practically impossible to figure out what will happen without learning a whole bunch of seemingly arbitrary, corner-case-specific rules (consider the jsdate.wtf test currently making the rounds). And no, nobody is IMX actually simply complaining about NaNs existing (although the lack of a separate integer type does complicate things). Notice that tests showcasing JavaScript WTFery can work just by passing user data to a builtin type constructor. Tests of Python WTFery generally rely on much more advanced functionality (see e.g. https://discuss.python.org/t/quiz-how-well-do-you-know-python/91405 https://discuss.python.org/t/quiz-how-well-do-you-know-pytho...). The only builtin type constructor in Python that I'd consider even slightly surprising is the one for `bytes`/`bytearray`. Python's scoping is simple and makes perfect sense, it just isn't what you're used to. (It also, unlike JavaScript, limits scope by default, so your code isn't littered with `var` for hygiene.) Variables are names for objects with reference semantics, which are passed by value - exactly like `class` types in C# (except you don't have to worry about `ref`/`in`/`out` keywords) or non-primitives in Java (notwithstanding the weird hybrid behaviour of arrays). Bindings are late in most places, except notably default arguments to functions. I have no idea what point you're trying to make about __add__; in particular I can't guess what you think it should mean to "inspect" the method. Of course things work differently when you use the C API than when you actually write Python code; you're interacting with C data structures that aren't directly visible from Python. When you work at the Python level, __add__/__iadd__/__radd__ implement addition, following a well-defined protocol. Nothing happens "at creation time"; methods are just attributes that are looked up at runtime. It is true that the implementation of addition will overlook any `__add__` attribute attached directly to the object, and directly check the class (unlike code that explicitly looks for an attribute). But there's no reason to do that anyway. And on the flip side, you can replace the `__add__` attribute of the class and have it used automatically; it was not set in stone when the class was created. I'll grant you that the `match` construct is definitely not my favourite piece of language design.
- dec0dedab0de 1y agoI find it incredibly intuitive and useful that it does that. sometimes it drives me nuts that it doesn't do it for comprehensions but I can see why. But if something fails in a loop running in the repl or jupyter I already have access to the variables. If I want to do something with a loop of data that is roughly the same shape, I already have access to one of the the items at the end. Short circuiting/breaking out of a loop early doesn't require an extra assignment. I really can't see the downside.
- bobbylarrybobby 1y agoPython 2 actually did let comprehension variables leak out into the surrounding scope. They changed it for Python 3, presumably because it was too surprising to overwrite an existing variable with a comprehension variable.
- dapperdrake 1y agoThat almost sounds like having the "variables" eax, ebx, ecx, and edx.
- dec0dedab0de 1y agoOh wow, maybe that's why I expect it to work that way! I can't believe it's been long enough since I used 2 that I'm forgetting it's quirks.
- pletnes 1y agoIt would be utterly nuts otherwise. For loops over all elements in a sequence. If the sequence is a list of str, as an example, what would the «item after the last item» be?
- setr 1y agothe issue isn't the value of i, the issue is that i is still available after the loop ends. in most other languages, if it was instantiated by the for-each loop, it'd die with the for-each loop
- all2 1y agoI cannot tell you how many times I've hit issues debugging and it was something like this. "You should know better" -- I know, I know, but I still snag on this occasionally.
- Alex3917 1y ago> `for i in range(5): ...` will leave `i` bound to 4 after the loop. reply This "feature" was responsible for one of the worst security issues I've seen in my career. I love Python, but the scope leakage is a mess. (And yes, I know it's common in other languages, but that shouldn't excuse it.)
- anitil 1y agoI would love to hear about the security issue if you're able to talk about it
- Alex3917 1y agoI don't remember the exact details, but it basically involved something along the lines of: 1) Loop through a list of permissions in a for list 2) After the loop block, check if the user had a certain permission. The line of code performing the check was improperly indented and should have failed, but instead succeeded because the last permission from the previous loop was still in scope. Fortunately there was no real impact because it only affected users within the same company, but it was still pretty bad.
- anitil 1y agoOof that's a near miss. That's the sort of hard-to-find issue that keeps me up at night. Although maybe these days some ai tool would be able to pick them up
- slightwinder 1y agoThis is just Pythons scoping, which is not restricted by block, but function. You have the same effect with every other element.
- MyOutfitIsVague 1y agoThere's no block scope in Python. The smallest scope is function. Comprehension variables don't leak out, though, which causes some weird situations: >>> s = "abc" >>> [x:=y for y in s] ['a', 'b', 'c'] >>> x 'c' >>> y Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'y' is not defined Comprehensions have their own local scope for their local variables, but the walrus operator reaches up to the innermost "assignable" scope.
- martin82 1y agoWow. I had been writing Python for 15 years and I didn't even know that operator exists
- chucksmash 1y agoIt's only existed for 6 of those years so perhaps you can be forgiven :) The last time I wrote Python in a job interview, one of the interviewers said "wait, I don't know Python very well but isn't this kinda an old style?" Yes, guilty. My Python dates me.