Only doing something if a condition is true:
if condition:
statements
Do one thing if a condition is true, and something else if false:
if condition:
statements
else:
statements
Having multiple conditions to check and only ever entering one:
if condition1:
statements
elif condition2:
statements
elif condition3:
statements
While statements:
while condition:
statements
For statements:
for var in seq:
statements
Function definitions:
def name(parameters):
statements
Return statement:
return expression