

Your point about it not running when there is nothing to iterate over is incorrect. The else-statement runs when the iterator is exhausted; if the iterator empty, it is exhausted immediately and the else-statement is executed.
Your point about it not running when there is nothing to iterate over is incorrect. The else-statement runs when the iterator is exhausted; if the iterator empty, it is exhausted immediately and the else-statement is executed.
In a competitive setting, it would mean that both players get 0.5 points instead of white getting 0 and black getting 1 points.
Wow, this is great! Works perfectly if you only care about the order of the files. However, if you wanted e.g. the 238th file or know which index file 99993 is, that’s a bit more of a headache.
You’ll also run into filename length limits quite quickly, since the number of files scales linearly with the number of characters in the filename, compared to exponentially with the 01 method.
If it’s like the system in Sweden, it’s actually ~$400 straight up benefit, and ~$800 in a very favourable (optional) loan with very low interest that is paid back over 25 years.
Now I imagine them just writing an incoherent string of words. “Tomato car house fireman oven duck garden rice…”
Probably is. If they gave you a little too much anesthesia so you didn’t wake up, you would probably drift off the same, and then just not wake up.
I think it’s fair to say that those in their late teens now are the first generation raised online. Sure, previous generations where raised alongside the internet, but the current generation is raised with a much larger presence of the internet.
I think it does make sense, it’s a “did this loop exit naturally? If so, do x”. This makes a lot of sense if you, for example, have a loop that checks a condition and breaks if that condition is met, e.g. finding the next item in a list. This allows for the else statement to set some default value to indicate that no match was found.
Imo, the feature can be very useful under certain circumstances, but the syntax is very confusing, and thus it’s almost never a good idea to actually use it in code, since it decreases readability a lot for people not intimately familiar with the language.
Edit: Now, this is just guessing, but what I assume happens under the hood is that the else statement is executed when the StopIteration exception is recieved, which happens when next() is called on an exhausted iterator (either empty or fully consumed)