min() max() sum() function of list in python | python list

Published: 15 February 2022
on channel: Mangesh Bagul
2,269
54

min() max() sum() function of list in python | python list #pythoncode, computer science, #python #shorts
Create a list with 10 value and find the
smallest , largest and sum of
all the number in the list.
list = [11,55,22,58,87,3,23,8,104,44]

list = [11,55,22,58,87,3,23,8,104,44]
print("Smallest numbet is: ",min(list))
print("largest number is: ",max(list))
print("sum of number is: ",sum(list))

output:
Smallest numbet is: 3
largest number is: 104
sum of number is: 415


Watch video min() max() sum() function of list in python | python list online without registration, duration hours minute second in high quality. This video was added by user Mangesh Bagul 15 February 2022, don't forget to share it with your friends and acquaintances, it has been viewed on our site 2,269 once and liked it 54 people.