[issue41942] Add if condition for 'for loop'
chienpingtsung added the comment: Got it, thanks for your reply~ -- resolution: -> not a bug stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python.or
[issue41942] Add if condition for 'for loop'
New submission from chienpingtsung : 'for loop' always been used as follow code: arr = [...] for e in arr: if not condition(e): continue ... What if be written just like 'list expression', would it be more explicit? for e in arr if co