You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the human.py file, create a new Vet class to simulate a veterinarian.
Add the class to human.py with the following parameters: clinic_name which takes a string and defaults to None and patients which takes a list of Cats and defaults to None. Make sure that if patients is a list then the list contains Cats
Write a function called checkup that takes a Cat as a parameter and increase cat health by 1 and decreases its mode by 1
In the
human.pyfile, create a newVetclass to simulate a veterinarian.human.pywith the following parameters:clinic_namewhich takes a string and defaults to None andpatientswhich takes a list of Cats and defaults to None. Make sure that if patients is a list then the list contains Catscheckupthat takes a Cat as a parameter and increase cat health by 1 and decreases its mode by 1