write a function get list avg() that expects a parameter main list (a list of lists) and returns a new list that contains the average of each sub-list in main list. the function should return an empty list if the main list is empty.



Answer :

Other Questions