Submit:
- One python file __name__ == \"__main__\"
- Screenshot of sample output
Be sure to:
- Comment your code, classes and functions! Practice practicepractice!
- Use meaningful variables
- If you do not I will remove points
Dog Walker Program
- Create a program for a Dog Walking company to keep track of itsemployees, customers, and customer dogs
- You will need the following classes:
- Person
- With the following attributes:
- name
- id_number
- dogs : list of Dog objects
- With the appropriate setters and getters
- With the following subclasses:
- DogWalker(Person)
- With the following attributes:
- With the appropriate setters and getters
- Customer(Person)
- With the following attributes
- amount_owed : float, how much they currently owe
- With the appropriate setters and getters
- Dog
- With the following attributes
- name
- breed
- weight
- hours_walked
- With the appropriate setters and getters
Programming language: Python
requirement: please follow up the rules per demonstratedabove