Create a Python function that takes a list of n integers and returns the largest number among the n integers.
I need the code to have an output stated above.
def max_lst(lst):
return max(lst)
print('Your maximum value in the list =', max_lst(input()))
Comments
Leave a comment