Python also allows us to inherit from multiple classes.
If there conflicting methods between the two parent classes, Python chooses the method from the class mentioned first.
Try changing the order of the Parent classes from Phone, Camera
to Camera, Phone
and see the results.