PEP 8 Recommendations
Indentation
# No extra indentation.
if (this_is_one_thing and
that_is_another_thing):
do_something()
# Add a comment, which will provide some distinction in editors
# supporting syntax highlighting.
if (this_is_one_thing and
that_is_another_thing):
# Since both conditions are true, we can do something.
do_something()
# Add some extra indentation on the conditional continuation
# line.
if (this_is_one_thing
and that_is_another_thing):
do_something()Compound Statements
Comparisons to singletons
Last updated