Examveda

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

D. none of the mentioned

Answer: Option C


This Question Belongs to Python Program >> Lists In Python

Join The Discussion

Related Questions on Lists in Python