Here in the class student, the constructor should be defined like this
class Student:
def __init__(self,names,marks):
self.names=names
self.marks=marks
def checkpassfail(self):
if self.marks>30:
return True
else:
return False
student1= Student('jack',87)
if student1.checkpassfail():
print(student1.names)
print(student1.marks)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…