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()
One simple way would be to sort the list first then use indexing.
Here's a function that would work:
a = [1,233,12,34] def find_max(a): return sorted(a)[-1]