This is a Python-based booking system for SkyHigh Adventures, a travel agency offering packages to popular destinations. The system allows users to manage bookings for multiple families, calculate costs based on various factors, and display a summary of all bookings.
- Object-Oriented Design
- Destination Management
- Family Booking Handling
- Dynamic Cost Calculations
- Booking Summary Display
- Python 3.7 or higher
- Clone the repository:
git clone https://github.com/your-username/skyhigh-adventures-booking.git
- Change to the project directory:
cd skyhigh-adventures-booking
- Run the booking system:
python booking_system.py
- When prompted, enter the family name.
- Select a destination option (1-3).
- Input the number of adults and children in the family.
- Repeat the process for additional families or type 'quit' to finish.
- The system will display the total cost for each family in Malaysian Ringgit (MYR).
The project consists of the following key components:
BookingSystem
: The main class that manages the booking system, destinations, and family bookings.Destination
: Represents a travel destination with associated costs.Family
: Represents a family booking, including the name, destination, and member details.Person
(abstract),Adult
, andChild
: Classes that handle the cost calculations for different types of family members.
The project follows an object-oriented design, which is illustrated in the UML diagram below:
Contributions, bug reports, and feature requests are welcome. Please follow the standard GitHub workflow (fork, branch, commit, push, and pull request).
This project is licensed under the MIT License.
- The initial project requirements were provided by the RCIT 1763 - Object-Oriented Programming course at Bank Rakyat School of Business, Innovation, Technology and Entrepreneurship (BRSBITE).