Question #335779

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.

Expert's answer

def max_lst(lst):

  return max(lst)


print('Your maximum value in the list =', max_lst(input()))



LATEST TUTORIALS
APPROVED BY CLIENTS