from student import Student tj = Student("tj",123) print(tj.hentNavn()) print(tj) print(tj.hentInfo()) mj = Student("mj",123) mj2 = Student("mj",1234) print(mj==tj) print(mj2 == mj)