Ask Question

Write a python function that on input takes a list l of integers and returns the count of how many of the integers in the list are even.

+1
Answers (1)
  1. 3 June, 14:03
    0
    Def countEvenIntegers (integerList) : counter = 0 for item in integerList: if (item%2 = 0) : counter + = 1 return counter
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a python function that on input takes a list l of integers and returns the count of how many of the integers in the list are even. ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers