In [1]:
class Person:
def __init__(self, name, age, gender):
self.name = name
self.age = age
self.gender = gender
def display_info(self):
print(f"Name: {self.name}")
print(f"Age: {self.age}")
print(f"Gender: {self.gender}")
In [2]:
class Patient(Person):
def __init__(self, name, age, gender, patient_id, ailment):
super().__init__(name, age, gender)
self.patient_id = patient_id
self.ailment = ailment
def display_info(self):
super().display_info()
print(f"Patient ID: {self.patient_id}")
print(f"Ailment: {self.ailment}")
In [3]:
class Doctor(Person):
def __init__(self, name, age, gender, doctor_id, specialty):
super().__init__(name, age, gender)
self.doctor_id = doctor_id
self.specialty = specialty
def display_info(self):
super().display_info()
print(f"Doctor ID: {self.doctor_id}")
print(f"Specialty: {self.specialty}")
In [4]:
patient = Patient("John Doe", 30, "Male", "P12345", "Flu")
doctor = Doctor("Dr. Smith", 45, "Female", "D2345", "Cardiology")
In [5]:
print("Patient Information:")
patient.display_info()
print("\nDoctor Information:")
doctor.display_info()
Patient Information: Name: John Doe Age: 30 Gender: Male Patient ID: P12345 Ailment: Flu Doctor Information: Name: Dr. Smith Age: 45 Gender: Female Doctor ID: D2345 Specialty: Cardiology