...

/

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 = name
self.phy = phy
self.chem = chem
self.bio = bio
def 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 ...