Question: Q5b. Write a class that fulfils the following specifications. Class name Aclassward Parameter(s) There is no parameter for this class constructor. argument(s) for the constructor

Q5b. Write a class that fulfils the following specifications. Class name Aclassward Parameter(s) There is no parameter for this class constructor. argument(s) for the constructor init Detailed This class inherits the ward class given in the template. description Class attributes 1. Override the class attributes as followed: The MAXIMUM OCCUPANCY of an AclassWard is 1. Its DAILY_RATE is 500 dollars instead of 35 dollars. 2. Define an additional class attribute: SLEEPER_UNIT_PRICE: float The default value for the SLEEPER_UNIT_PRICE is 100 dollars. Instance attribute The class has an additional instance attribute: 1. has_sleeper_unit: bool The default value for this attribute is False. Example usage ward - Aclassward() print(AClassward. MAXIMUM_OCCUPANCY) print(Aclassward.DAILY_RATE) print(ward. has_sleeper_unit) Example usage output 1 500 False
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
