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
English,
3 months ago
Environmental Sciences,
3 months ago
Math,
6 months ago
Hindi,
6 months ago
English,
1 year ago