Jak sprawdzić wszystkie elementy na liście są nawet lub nie

num = [2, 2, 2, 2]
res = all([i % 2 == 0 for i in num])
print(res)
Excited Earthworm