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()
def getMaxNumber(numbers): return 'N.A' if len(numbers) == 0 else max(numbers)