0 votes
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

Related questions

0 votes
asked Jun 13, 2019 in Python by Derya
0 votes
asked Jun 13, 2019 in Python by Derya
...