C. Python Project (30 marks) I. Create a Python Project to be named TripProject using PyCharm IDE to define a new data and methods into a single unit that represents a template for evaluating trip costs. Structure type, called Trip in module trip_template.py, which is designed to group data a) Add constructor with parameters init within the Trip class in order to distance, tripDistance, and tripCostHotel) of every object. Initialize the four private data attributes tripDest for trip destination gasPrice for unit b) Add public Mutator (setter methods in Trip class to modify the values of private data attributes. c) Add public Accessor (getter methods in Trip class to read the values of private data attributes. d) Add a method called CalculateTripCost in Trip class to calculate and return the total cost of trip according to the following formula: Tot_TripCost = gasPrice * tripDistance + tripCostHotel. Add a void method called printTripInfo in Trip class to print the Trip information in the form of tripDest//gasPrice//tripDistance//tripCostHotel.