Bertrand Benjamin
cd31d3293c
All checks were successful
continuous-integration/drone/push Build is passing
7 lines
98 B
Python
7 lines
98 B
Python
def mystere(T):
|
|
s = 0
|
|
for k in T:
|
|
if k % 2 == 0:
|
|
s = s+k
|
|
return s
|