Simple code to find student result e.g (Total marks, Percentage , student GPA )
````````````````````````````````````````````````````````````````````````````````````````````` This code put in python idle or any other idle to find student result easily ````````````````````````````````````````````````````````````````````````````````````````````` class DMC: def __init__(self,sub_1,sub_2,sub_3,sub_4,sub_5,sub_6): self.programming=sub_1 self.calulas=sub_2 self.english=sub_3 self.islamyat=sub_4 self.physics=sub_5 self.computing=sub_6 def TotalMarks(self): Total=self.programming+self.calulas+self.english+self.islamyat+self.physics+self.computing if Total<0 or Total>600: print("Enter the marks") else: ret...