[issue46536] Better for loop

2022-01-26 Thread Eric V. Smith
Eric V. Smith added the comment: Thank you for the suggestion. This is unlikely to gain acceptance. zip is usable in places outside of for loops, whereas your suggestion appears to be only useful in for loops. In addition, I don't see a way to specify the "strict" option using your syntax.

[issue46536] Better for loop

2022-01-26 Thread Anonymous
Change by Anonymous : -- nosy: +me -vividnversatile1 resolution: -> not a bug ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue46536] Better for loop

2022-01-26 Thread The vivid & versatile channel
New submission from The vivid & versatile channel : for i in range(number), question in questions: ... instead of for i, question in zip(range(number), questions): ... -- messages: 411748 nosy: vividnversatile1 priority: normal severity: normal status: open title: Better for