Ternary Statement
Also called conditional operator
Loop Statements
The if
and while
loops can have a optional else
block
The else
block will be executed if the end of the loop is reached (i.e. all the elements in the iterable are exhausted)
break
Statement
When break
is used in a nested loop control is broken only from the inner most loop