▲ | int_19h 2 days ago | |
You can abuse list and sequence comprehensions for this. `for..in` is effectively a variable binding since you can target a freshly created list or a tuple if you need to bind a single value. So:
That said, I wouldn't recommend this because of poor readability. |