Python sample question with answer 14

Question:
You want to print 3 numbers from a list.
Iterative statement

  1. for i in [8, 9, 10]:
      print(i)
  2. for i in range(4):
      print(i)
  3. for i in range(3, 10):
      print(i)
  4. for i in [3, 4, 7, 10]:
      print(i)
Answer:
A - is the correct answer