Basic Math
The first item in the sequence gets assigned
iteration_variable
What does the symbol @ represent
Decorator
The statements which provide greater control over the execution of code in a loop
break and continue statements
The following Python code loops forever. What is it missing?
n = 10
while n<100:
print n
increment statement