#Write  Python code lines to get the sum all numbers in a list then get the result of multiplying them, then get the largest number of them, then get the smallest number of them, finally get the numbers of items in that list.


my_list =[1,4,20,50,100,2000,10000,6]

sum(my_list)

max(my_list)

min(my_list)

len(my_list)