W3-Coding Assignment Car Inventory In this assignment, you will create a Python program to manage car information using classes and objects. The program should allow users to create car objects, set and get their attributes, and display their information. Instructions: 1. Create a class named Car with the following attributes: · make (str): The make of the car. · model (str): The model of the car. · year (int): The manufacturing year of the car. · mileage (float): The current mileage of the car. 2. Implement the __init__ method in the Car class to initialize the attributes. The method should take the make, model, year, and mileage as parameters and set them accordingly. 3. Create methods named set_make, set_model, set_year, and set_mileage in the Car class. These methods should update the corresponding attribute with the provided value. 4. Create methods named get_make, get_model, get_year, and get_mileage in the Car class. These methods should return the value of the corresponding attribute. 5. Create a method named display_info in the Car class. This method should display the car’s information in the following format: Make: Model: Year: Mileage: miles 6. In the main part of the program: Display a welcome message and prompt the user to enter car information.
Place this order or similar order and get an amazing discount. USE Discount code “GET20” for 20% discount