Here is the pseudocode (requirements) for your program:

1. Define a function called “even_checker” that will do the following things:

Iterate over a list.
Check to see whether the values in the list are even.
Print the even values.
2. Create a list with ten numbers in it. (Some of your numbers should be odd, and some should be even.)

3. Call the function on your list.

Respuesta :

Pseudocodes are used as prototypes of an actual program, and they are not guided by the syntax of a programming language

Pseudocodes

The required pseudocodes, where comments are used to explain each line is as follows:

#This defines the function

def even_checker(numList):

   #This iterates through the list

   for i in numList:

       #This checks for even numbers

       if i%2 == 0:

           #This prints the even numbers

           print i

#This initializes the list

numList = [5,6,3,4,1,9,10,56,37,14]

#This calls the function

even_checker(numList):

Read more about pseudocodes at:

brainly.com/question/24793921