cara memeriksa semua elemen dalam daftar bahkan atau tidak

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