What is the output of the following program:
class student
def_init_(self,m1,m2,m3)
print(”constructor of class student”)
self.mark1=m1
self.mark2=m2
self.mark3=m3
def process (self):
total=self.mark1+self.mark2+self.mark3
Answers
Answered by
1
Sorry I couldn’t understand
Similar questions