Building a dictionary of averages
Open answerWrite a dictionary moyennes that associates each first name (Sam, Alex) with the average of their grades, based on notes_sam = [12, 15, 8] and notes_alex = [18, 16, 14]. Display the result.
Write a dictionary moyennes that associates each first name (Sam, Alex) with the average of their grades, based on notes_sam = [12, 15, 8] and notes_alex = [18, 16, 14]. Display the result.