from dvd import Dvd def hovedprogram(): dvd1 = Dvd("Lord of the rings", "Disney", 1) print(dvd1) dvd2 = Dvd("Lord of the rings", "Dreamworks", 2) dvd3 = Dvd("Lord of the rings", "Disney", 1) if dvd1 == dvd2: print("Yeah") else: print("ney") if dvd1 == dvd3: print("Yeah") else: print("ney") hovedprogram()