If Statements
If Statements
if statement
if statement# if statement formatting template
if (boolean_expression_here): # notice the colon to start the if's code block
# single indentation
code written here
# end of the if statement
code written here ... outside of the if statementLast updated