liste = [1,2,3,4,5,6,7,8,9,0]
def ciftetelli():
for q in liste:
try:
if q % 2 == 0:
print(q)
return q
elif q % 2 == 1:
raise ValueError()
except ValueError:
pass
print(ciftetelli())
hatamı anlayamıyorum yardımcı olur musunuz aşırı yeniyim