Counting Evens2

Write a program counting_evens2.py that uses a function count_evens(lst) to identify how many even values there are in a list of values. The function should return that count.

The main program should create several lists of numeric values and then print out the result of passing those lists to the count_evens function as a demonstration.