What will be the output of the following Python code snippet?
print([if i%2==0: i; else: i+1; for i in range(4)])
print([if i%2==0: i; else: i+1; for i in range(4)])
A. [0, 2, 2, 4]
B. [1, 1, 3, 3]
C. error
D. none of the mentioned
Answer: Option C
Join The Discussion