Q. How do you start a for loop to iterate over the elements of list `items`?
β
Correct Answer: (A)
for i in items:
Explanation: Python uses `for variable in iterable:` syntax.