if condition: return expression if condition: foo = value
or
if condition: body statements elif condition: body statements else: body statements
two spaces
• I was talking about Hacker News markup.
• Python officially recommends spaces: https://www.python.org/dev/peps/pep-0008/#tabs-or-spaces
if condition: return expression if condition: foo = value
or
if condition: body statements elif condition: body statements else: body statements