break, continue, pass, and the loop else

break

Jumps out of the closest enclosing loop (past the entire loop statement)

continue

Jumps to the top of the closest enclosing loop (to the loops header line)

pass

Does nothing at all: its an empty statement placeholder

Loop else block

Runs if and only if the loop is exited normally (i.e., without hitting a break)