Write a Patient class to be used by a medical application. Each patient object should have
a name, age, and a list of current diseases they are suffering from. Include in your class the
following:
- a constructor with parameters for name and age (patient is initially healthy)
- an __str__ method to allow printing a patient object
- an addDisease() method to add a disease to the patient's list of diseases
- a cure() method to cure the patient of all diseases
Your class should work with a main() such as this:
draco = Patient("Malfoy", 15)
draco.addDisease("spattergroit")
draco.addDisease("dragon pox")
print(draco)
draco.cure()