Iterable Unpacking Evaluation Order
问题 I recently answered a question where a user was having trouble because they were appending a multi-dimensional array to another array, and it was brought to my attention in my answer that it is possible to use iterable unpacking to populate an x and y value and assign to board[x][y] on the same line. I had expected this to throw an error as x and y had at the time not been defined, as, even in the iterable-unpacking tag it reads: elements of an iterable are simultaneously assigned to multiple