❓ Quiz Python

Que se passe-t-il à l'exécution ?

PYTHONDebutantboucles
20
quiz.py
1
x = [i**2 for i in range(5) if i % 2 == 0]
2
print(x)  # Que vaut x ?