if condition1 and # comment1
condition2: # comment2
would not work because a line is broken in the if statement, however,
if (condition1 and #comment1
condition2): # comment2
would fix the problem and maintain neat code.
if condition1 and # comment1
condition2: # comment2
if (condition1 and #comment1
condition2): # comment2
No comments:
Post a Comment