jadelord, 1 year ago It exists, kind of. Python has this construct <span style="color:#323232;">for item in iterable: </span><span style="color:#323232;"> ... </span><span style="color:#323232;">else: </span><span style="color:#323232;"> ... </span> which always puzzles me, since it depends on a break statement execution. I always have to look it up when the else block is executed.
It exists, kind of. Python has this construct
<span style="color:#323232;">for item in iterable: </span><span style="color:#323232;"> ... </span><span style="color:#323232;">else: </span><span style="color:#323232;"> ... </span>
which always puzzles me, since it depends on a break statement execution. I always have to look it up when the else block is executed.