Some are even numbers in the list
Return True if the given list consists of even numbers.
Otherwise False.
Sample Code:
def someEven(li):
# Enter your logic here...
Examples:
Input: [1,2,3,4,5]
Output: True
Explanation: 2 and 4 are even numbers.
Input: [1,2.1,3,4.2,5]
Output: False
Explanation: There are no even numbers.