Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Python plz You have a list of students' names and their grades (in exams taken in PTSL course) in the form of word-colon- number (i.e.
Python plz
You have a list of students' names and their grades (in exams taken in PTSL course) in the form of word-colon- number (i.e. 'Student_name:Grade'). You need to complete the following Python function which will find the sum of all grades of each student and will return a dictionary where the key is the student name and its value is the total sum. For example, if the list is. L'Ahmad.15', Alt:20. 'Sara:16, Ahmad:12", Ali:30] The function will return the following dictionary: [Ahmad':27. 'Ali:50'Sarat:16) def checkstudentsum(std_list)Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started