Notifications You must be signed in to change notification settings class Student(Person): def init(self, name, roll_no, branch): super().init(name) self.__roll_no ...
class Smartphone: def init(self, brand, model, storage, battery_life): self.brand = brand self.model = model self.storage = storage # Storage in GB self.battery_life ...