Replies: 1 comment
-
Thanks for the proposal! Consolidating in #3457. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Implement multiple loop variables for for loops:
I know that the example I used could be done using a dictionary, but I think especially for more loop variables there could be many use cases for multiple loop variables.
Also, for 2 loop variables, you should also be able to iterate over a dictionary, with the first loop variable being the key and the second the value. The workaround is, of course, just iterating over the keys and for the values do
dictionary[key]
, but I think you should still be able to use this 2 loop variable alternative.Beta Was this translation helpful? Give feedback.
All reactions