Write a python program to find the largest, smallest, sum of the elements of a list
Answers
Answered by
8
Explanation:
Program :
lst = []
num = int(input('How many numbers: '))
for n in range(num):
numbers = int(input('Enter number '))
lst. append(numbers)
print("Maximum element in the list is :", max(lst), "\nMinimum element in the list is :", min(lst))
Similar questions