I can't find an answer within the PEP 8 style guide.
Is there a possibility to break up a long for
statement by using round brackets instead of a backslash?
The following will result in a syntax error:
for (one, two, three, four, five in
one_to_five):
pass