Q80
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)])
A.
[0, 2, 2, 4]
B.
[1, 1, 3, 3]
C.
error
AnswerD.
none of the mentioned
Answer: Option C
Solution
Answer: Option C
No explanation is given for this question Let's Discuss on Board