question archive Arctic Bank leases vehicles for some of its senior employees

Arctic Bank leases vehicles for some of its senior employees

Subject:Computer SciencePrice: Bought3

Arctic Bank leases vehicles for some of its senior employees. These vehicles come in three categories: Royalty, Luxury, and Deluxe. At the end of each year, the accountant needs to generate a report on all the leased vehicles that shows the amounts spent on vehicle leasing annually. The charges on the different categories of vehicles are shown below.

Royalty: a monthly rental fee of $1,000, a monthly insurance charge of $50, and a maintenance fee of 20% of total mileage (i.e. 20% of total miles covered in the year).

Luxury: a monthly rental fee of $800, a monthly insurance charge of $35, and a maintenance fee of 15% of total mileage (i.e. 15% of total miles covered in the year).

Deluxe: a monthly rental fee of $500, a monthly insurance charge of $20, and a maintenance fee of 10% of total mileage (i.e. 10% of total miles covered in the year).

All vehicles were leased at the beginning of the year and so were leased for 12 full months of the year.

Make a Python application to assist the accountant in computing the annual expenditure on vehicle leases for the year under review. Your application should have the following classes:

Vehicle

Classes Royalty, Luxury, and Deluxe, which are subclasses of Vehicle

Class Customer

Note:

Each class (including subclasses) should have an appropriate initializer method that initializes any attributes you think are necessary with their appropriate values.

Superclass method(s) should be overridden in the subclasses where appropriate.

Note: You should not make any changes to the method names or parameter lists for the methods shown for each class.

The test function main() is also provided and should not be modified.

 

Below is the outline for the class I need. I have also added the main class and the desired output so it is easier to understand

class Customer:

def __init__ ...

# Add this vehicle to list

def add_vehicle(self, vehicle):

# Return list of vehicles

def get_vehicles(self):

# Calculate total lease amount of all vehicles in list

def calculate_total_lease(self):

The methods in the Vehicle class are shown below:

 

 

def main():

cust = Customer()

vehicle1 = Royalty("Limousine", 'VZT2002357', 150) # (brand, vin, mileage)

vehicle2 = Luxury("Lamborghini", 'VGH2005649', 200) # (brand, vin, mileage)

vehicle3 = Deluxe("Lexus", 'VQP2005963', 200) # (brand, vin, mileage)

cust.add_vehicle(vehicle1)

cust.add_vehicle(vehicle2)

cust.add_vehicle(vehicle3)

vehicles = cust.get_vehicles()

print("Vehicle Lease Expenses")

print("======================n")

print(f'{"Vehicle Type":<15}{"Brand":<15}'

f'{"VIN":<12}'

f'{"Lease Amount":>10}')

print(f'{"------------":<15}{"-----":<15}'

f'{"---":<12}'

f'{"------------":>10}')

for i in range(len(vehicles)):

print(

f'{vehicles[i].get_type():<15}{vehicles[i].get_brand():<15}'

f'{vehicles[i].get_vin():<12}'

f'{"$"}{vehicles[i].get_lease_amount():>10,.2f}')

print()

print(

f'{"Total vehicle lease amount: $"}{cust.calculate_total_lease():>10,.2f}')

vehicle4 = Royalty("Rolls-Royce", 'VPL2006637', 200) # (brand, vin, mileage)

vehicle5 = Deluxe("Camry", 'VVV2006415', 250) # (brand, vin, mileage)

cust.add_vehicle(vehicle4)

cust.add_vehicle(vehicle5)

print()

for i in range(len(vehicles)):

print(

f'{vehicles[i].get_type():<15}{vehicles[i].get_brand():<15}'

f'{vehicles[i].get_vin():<12}'

f'{"$"}{vehicles[i].get_lease_amount():>10,.2f}')

print()

print(

f'{"Total vehicle lease amount: $"}{cust.calculate_total_lease():>10,.2f}')

Expected output:

Vehicle Lease Expenses

======================

Vehicle Type Brand VIN Lease Amount

------------ ----- --- ------------

Royalty Limousine VZT2002357 $ 12,630.00

Luxury Lamborghini VGH2005649 $ 10,050.00

Deluxe Lexus VQP2005963 $ 6,260.00

Total vehicle lease amount: $ 28,940.00

Royalty Limousine VZT2002357 $ 12,630.00

Luxury Lamborghini VGH2005649 $ 10,050.00

Deluxe Lexus VQP2005963 $ 6,260.00

Royalty Rolls-Royce VPL2006637 $ 12,640.00

Deluxe Camry VVV2006415 $ 6,265.00

Total vehicle lease amount: $ 47,845.00

Process finished with exit code 0

 

pur-new-sol

Purchase A New Answer

Custom new solution created by our subject matter experts

GET A QUOTE