## Parts of a loop 1. increment variable 2. iterator/iteration 3. repeated code In the previous loop, `i` is the increment variable, \ `range(3)` is the iterator and the snippet below is the repeated code ``` interest = input(f"What is your number {i} interest: ") interests.append(interest) ```