student marklist


i have occur a bound method error in grade and result.

Code:
class student:
    def getStudent(self):
        self.name = input("Name: ")
        self.Roll = int(input("Roll: "))
        
class test(student):
    
    def getMarks(self):
        print("Enter the marks of the respective subjects")
        self.literature
...