Q3 Function Definition 6 Points
Write a Python function, findLastEvenInt, in the space below that takes in a list of integers (intList) as its parameter and returns the last even integer in intList (the last even int at the end of the list). If no even integers exist in intList, then None is returned.
Your solution may use whitespace characters for indentation since tabs may not work in Gradescope's answer box, but you must be consistent with your spacing.
Note:
Your solution must be a complete function definition with appropriate syntax and indentation in order to receive full credit.
If your function is implemented correctly, then the following assert statements should pass:
assert findLastEvenInt([]) == None
assert findLastEvenInt([1,3,5]) == None
assert findLastEvenInt([2]) == 2
assert findLastEvenInt([2,4,6]) == 6
assert findLastEvenInt([1,2,3,4,5]) == 4