Maximum Value2

Write a program maximum_value2.py that uses a function max_value(lst) to look through a list of numeric values and find the largest number in the list. The function should return that number.

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

Sample Output

Here's a list of values: [2,4,-5,7,12,20,3]
The largest value, according to the max_value function, is: 20

Here's another list of values: [-4, 0, 17, 237, 20, 9]
The largest value, according to the max_value function, is: 237