Question: Complete the following function according to its docstring. from typing import List | def first_even(items: List) ->int: Return the first even number from items. Return
Complete the following function according to its docstring.

from typing import List | def first_even(items: List) ->int: "Return the first even number from items. Return -1 if items contains no even numbers. >>> first_even([5, 8, 3, 2]) 8 >>> first_even([7, 1]) -1 18 18
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
