ConvertQCM/C1/vs/q7_9.py
2025-08-26 18:38:28 +02:00

6 lines
No EOL
81 B
Python

def mystere(T):
s = 0
for k in T:
if k % 2 == 0:
s = s+k
return s