...
/Solution Review 2: Calculate the Student's Performance
Solution Review 2: Calculate the Student's Performance
This review provides a detailed explanation of the 'Calculate the Student's Total Marks' challenge.
We'll cover the following...
Solution #
Press + to interact
class Student:def __init__(self, name, phy, chem, bio):self.name = nameself.phy = phyself.chem = chemself.bio = biodef totalObtained(self):return(self.phy + self.chem + self.bio)def percentage(self):return((self.totalObtained() / 300) * 100)
Explanation
-
In line 3 - 6, we have initialized
name
,phy
...