How do you get the index of an element in a loop?
for i in range(5):
i = [0, 1, 2, 3, 4]
True or False: You have to define an increment in a loop in Python
False - index is incremented implicitly
How would you loop through a specific index range in Python?
for i in range(2, 6):
i = [2, 3, 4, 5]
True or False: The last index in a Python loop is included in the loop
False - the last value is not included
How would you loop in reverse order in Python?
for i in range(6, 2, -1)
i = [6, 5, 4, 3]