Code:
import csv
def show_reservation(file_path):
# Using a list of tuples as I'm assuming we can have multiple reservations for the same time
reservation_info = []
# Use a context manager here so that you don't
# have to remember
Leave a comment: