In [1]:
class Patient:
def __init__(self, name, age, medical_history):
self.__name = name
self.__age = age
self.__medical_history = medical_history
def get_name(self):
return self.__name
def set_name(self, name):
self.__name = name
def get_age(self):
return self.__age
def set_age(self, age):
self.__age = age
def get_medical_history(self):
return self.__medical_history
def set_medical_history(self, medical_history):
self.__medical_history = medical_history
def display_patient_details(self):
print(f"Name: {self.__name}")
print(f"Age: {self.__age}")
print(f"Medical History: {self.__medical_history}")
In [2]:
patient1 = Patient("John Doe", 45, ["Diabetes", "Hypertension"])
patient1.display_patient_details()
Name: John Doe Age: 45 Medical History: [''''''''''''''''''''''''''''''''Diabetes'''''''''''''''''''''''''''''''', ''''''''''''''''''''''''''''''''Hypertension'''''''''''''''''''''''''''''''']
In [3]:
patient1.set_age(46)
patient1.set_medical_history(["Diabetes", "Hypertension", "Asthma"])
patient1.display_patient_details()
Name: John Doe Age: 46 Medical History: [''''''''''''''''''''''''''''''''Diabetes'''''''''''''''''''''''''''''''', ''''''''''''''''''''''''''''''''Hypertension'''''''''''''''''''''''''''''''', ''''''''''''''''''''''''''''''''Asthma'''''''''''''''''''''''''''''''']