Develop an online car rental platform by employing Object-Oriented Programming in Python.
A car rental company has requested you to develop an online platform for renting cars where customers can easily view the cars available for rental on an hourly, daily, or weekly basis. The company will show the current inventory and verify requests by checking the available stock. Upon returning the car, customers will receive an automatically generated bill.
For simplicity, let’s assume that:
- Customers may rent cars using one of the following options: hourly, daily, or weekly rental.
- Customers can freely choose the number of cars they wish to rent as long as the quantity of available cars exceeds their requested amount.
Jupyter Notebook: To create the module and main project files
- Create a module (.py file) for car rental and import the built-in DateTime module to manage the rental time and billing
- Create a class for renting the cars and define a constructor in it
- Define a method to display the available cars. Additionally, create methods for renting cars on an hourly, daily, and weekly basis, respectively
- Within these methods, ensure that the requested number of cars is both positive and less than the total number of available cars
- Store the rental time of a car in a variable. You can later use this variable in the bill when returning the car
- Define a method that returns the cars based on rental time, rental mode (hourly, daily, or weekly), and the number of cars rented
- Within the return method, perform the following actions: update the inventory stock, calculate the rental period, and generate the final bill
- Create a class for customers and define a constructor in it
- Define methods for requesting the cars and returning them
- Now, create the main project file (.ipynb) next and import the car rental module into it
- Define the main method and create objects for both the car rental and customer classes
- Within the main method, receive the customer's input to choose between displaying car availability, rental modes, or returning the cars
- Utilize the appropriate method for the customer's input and display relevant messages Run the main method to start your project