Question: Must be done in Python: The read_solution function needs to be completed. Here is the class used: Here are the requirements for the function and
Must be done in Python:
The read_solution function needs to be completed.
Here is the class used:

Here are the requirements for the function and some test codes and required outputs, aswell as the starting template:


When I tried writing the function, there was an error with the slpit function in the class. Below is testcodes and required outputs for the class so if you ammend the class you can check that both the conditions of the function and the class are satisfied

class Assessment: def _init__(self,name,answers): self.__name-name self.__answerList-answers.split(',') def getName(self): return self.__name def setName(self, name): self.__name-name def getAnswers(self): return self. _answerList def setAnswers(seLf, answers): self.__answerList-answers.split(',') def _str_(self): return self.__name+ answer: 'str(self.__answerList) def calculate_marks(self, inputAnswers): marks-0 inputAnswerList-inputAnswers.split(', ') if (len(inputAnswerList)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
