def xyz(x, y, z):
def count_of_divided_by_3(values):
result = 0
for i in values:
if i % 3 == 0:
result += 1
return result
if count_of_divided_by_3([x, y, z]) == 1:
return True
return False
print(xyz(5, 6, 2))
def xyz(x, y, z):
def count_of_divided_by_3(values):
result = 0
for i in values:
if i % 3 == 0:
result += 1
return result
if count_of_divided_by_3([x, y, z]) == 1:
return True
return False
print(xyz(5, 6, 2))