in Python by
What is the output of the following?

a = [0, 1, 2, 3]
i = -2
for i not in a:
    print(i)
    i += 1

a. none of the mentioned
b. -2 -1
c. 0
d. error
...