I\'m trying to do a lab work from the textbook Zelle Python Programming
The question asked me to \"write and test a recursive function max() to find the
max()
Here is my answer, with a one line of code :))
def max_value(n_list): return n_list[0] if len(n_list) == 1 else max(n_list[0], max_value(n_list[1:]))