Pizza shop is a project which consisted of designing a pizza ordering system, where the user would input the order details and a receipt with those details would be printed at the end. The class PizzaReceipt was responsible for printing the receipt, while the class Order was responsible for generating the order which the user inputs. In the Order class contained two functions: main() and order(). The system consisted of the main() function calling the order() function as long as the user continued the order. The order() function created tuples which contained the toppings of each pizza, which were then returned and appended to the PizzaOrder list which would be used to generate the receipt.
University Rankings was a project centered around file navigation. The program would read the files containing the information, gather the information required, then print it in an empty text file which will contain the output. For loops were used to read through all the lines in the files, each line being split into lists so the functions could gather the keywords (the key info) located in each line.
The Air Travel project revolved around classes, objects and containers (i.e: dictionaries and sets). Objects of two different classes: Airport and Flight, would be made based on the information gathered from airportFile and flightFile. These objects would then be stored in their respective containers, which would be accessed later by the tester files.