From 4eb2f0578f52d48a18e053ff5b679220228d06de Mon Sep 17 00:00:00 2001
From: Louis Oliphant <ltoliphant@wisc.edu>
Date: Fri, 11 Oct 2024 08:17:46 -0500
Subject: [PATCH] lec 16 finished

---
 .../Lec_16_List_Practice.ipynb                |  730 +++++++++++
 .../Lec_16_List_Practice_Solution.ipynb       |  893 +++++++++++++
 .../Lec_16_Worksheet_Solution.ipynb           |  256 ++++
 .../16_List_Practice/cs220_survey_data.csv    | 1105 +++++++++++++++++
 4 files changed, 2984 insertions(+)
 create mode 100644 f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice.ipynb
 create mode 100644 f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice_Solution.ipynb
 create mode 100644 f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_Worksheet_Solution.ipynb
 create mode 100644 f24/Louis_Lecture_Notes/16_List_Practice/cs220_survey_data.csv

diff --git a/f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice.ipynb b/f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice.ipynb
new file mode 100644
index 0000000..ca8f0d4
--- /dev/null
+++ b/f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice.ipynb
@@ -0,0 +1,730 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Resources To Improve In The Course\n",
+    "\n",
+    "* **CS 220 Office Hours** -- As I'm sure you know, you can go to the [course office hours](https://cs220.cs.wisc.edu/f24/schedule.html) to get help with labs and projects.\n",
+    "* **CS Learning Center** -- Offer free [small group tutoring](https://www.cs.wisc.edu/computer-sciences-learning-center-cslc/), not for debugging your programs, but to talk about course concepts.\n",
+    "* **Undergraduate Learning Center** -- Provides tutoring and [academic support](https://engineering.wisc.edu/student-services/undergraduate-learning-center/).  They have [drop-in tutoring](https://intranet.engineering.wisc.edu/undergraduate-students/ulc/drop-in-tutoring/)."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Warmup"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Warmup 0: Hotkeys\n",
+    "# We move quickly, it's good to know some hotkeys!\n",
+    "\n",
+    "# All-around good-to-knows...\n",
+    "#  Ctrl+A: Select all the text in a cell.\n",
+    "#  Ctrl+C: Copy selected text.\n",
+    "#  Ctrl+X: Cut selected text.\n",
+    "#  Ctrl+V: Paste text from clipboard.\n",
+    "#  Ctrl+S: Save.\n",
+    "\n",
+    "# Jupyter-specific good-to-knows...\n",
+    "#  Ctrl+Enter: Run Cell\n",
+    "#  Ctrl+/: Comment/uncomment sections of code.\n",
+    "#  Esc->A: Insert cell above\n",
+    "#  Esc->B: Insert cell below\n",
+    "#  Esc->Shift+L: Toggle line numbers (not working on my machine, but can look under View->Show Line Numbers).\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Warmup 1: Empty List\n",
+    "\n",
+    "weekend_plans = []  # I have no weekend plans :(\n",
+    "print(weekend_plans)\n",
+    "\n",
+    "# TODO add three things to your weekend plans using .append\n",
+    "\n",
+    "print(weekend_plans)\n",
+    "\n",
+    "# TODO add three things to your weekend using .extend\n",
+    "\n",
+    "print(weekend_plans)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "# Warmup 2: Tic-Tac-Toe\n",
+    "\n",
+    "board = []\n",
+    "\n",
+    "# TODO using .append(), add three lists of row data for tic-tac-toe (Noughts and Crosses)\n",
+    "# make up the placement of X's and O's.\n",
+    "\n",
+    "# TODO now use nested loops to print the board\n",
+    "\n",
+    "# TODO print out the center value using double indexing\n",
+    "print(board[1][1])"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "# List Practice\n",
+    "\n",
+    "**Readings**\n",
+    "\n",
+    "- Optional: [Set Data Type](https://docs.python.org/3.10/library/stdtypes.html#set-types-set-frozenset)\n",
+    "- Optional: [W3Schools on Set Data Type](https://www.w3schools.com/python/python_sets.asp)\n",
+    "\n",
+    "**Objectives**\n",
+    "\n",
+    "- Understand and use the `set` data type for removing duplicates\n",
+    "- Create helper functions for filtering data\n",
+    "- Use the `sort()` and `sorted()` functions and understand the difference between them.\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "## Set Data Type\n",
+    "\n",
+    "Another data type similar to a list is a set.  To create a set you use curly braces instead of square brackets.  Sets cannot contain duplicate items.\n",
+    "\n",
+    "```python\n",
+    "    my_set = {2, 3, 3, 4}\n",
+    "    print(my_set)\n",
+    "```\n",
+    "```\n",
+    "    {2,3,4}\n",
+    "```\n",
+    "\n",
+    "One common use for sets is to remove duplicates from a list.  You can do this by converting a list to a set and then convert it back again.\n",
+    "\n",
+    "```python\n",
+    "    groceries = ['apples','oranges','kiwis','apples']\n",
+    "    groceries = list(set(groceries))\n",
+    "    print(groceries)\n",
+    "```\n",
+    "```\n",
+    "    ['apples','oranges','kiwis']\n",
+    "```\n",
+    "\n",
+    "You can read more about sets and the methods that you can use with them at [w3school](https://www.w3schools.com/python/python_sets.asp).\n",
+    "\n",
+    "### You Try It\n",
+    "\n",
+    "Use the `.add()` and `.discard()` methods to the set below to add at least 4 weekend plans, with one being a duplicate and then removing one of the weekend plans."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "# However, it is unordered and unique.\n",
+    "# The function names are also a little different!\n",
+    "weekend_plans = set() # creates an empty set\n",
+    "\n",
+    "## TODO: use .add() to add 4 items to weekend_plans with one being a duplicate\n",
+    "\n",
+    "\n",
+    "print(weekend_plans)\n",
+    "\n",
+    "# TODO: use .discard() to remove one of the items from the set\n",
+    "# Unlike a list's remove, this will not throw an error if DNE (does not exist).\n",
+    "\n",
+    "print(weekend_plans)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "## Helper Functions\n",
+    "\n",
+    "Last class we created the `cell()` function to help with selecting values from the survey data.  Let's take this a step further today and create a range of helper functions that we can use to answer more challenging questions.  Investing time into creating good helper functions can speed up tackling answering these challenging questions and they provide flexibility so you can use the same helper functions to answer a variety of questions.\n",
+    "\n",
+    "First, let's create our `process_csv()` function to help with loading the data and then split the data into the header and data portions.  Finish the code in the cells below:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "import csv\n",
+    "\n",
+    "# source:  Automate the Boring Stuff with Python Ch 12\n",
+    "def process_csv(filename):\n",
+    "    exampleFile = open(filename, encoding=\"utf-8\")  \n",
+    "    exampleReader = csv.reader(exampleFile) \n",
+    "    exampleData = list(exampleReader)        \n",
+    "    exampleFile.close()  \n",
+    "    return exampleData"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "# TODO: Seperate the data into 2 parts...\n",
+    "# a header row, and a list of data rows\n",
+    "cs220_csv = process_csv('cs220_survey_data.csv')\n",
+    "cs220_header = ...\n",
+    "cs220_data = ..."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "Let's make the `cell()` function again, but this time let's make it a little more robust.  If you recall we filtered empty values and returned the `None` instead of an empty string.  We also converted the `Age` column's type to int() (and filtered out if a decimal point was found.\n",
+    "\n",
+    "Let's take that a step further and think about every column and what values we would want to filter out and instead return a `None` and what the data types we would want to return.  The `Latitude` and `Longitude` columns contain values that would best be treated as a float.  Can you think of any other changes to data types or specific values that should be filtered out?\n",
+    "\n",
+    "Make those changes to the cell function below:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "# Remember the improved cell function\n",
+    "\n",
+    "def cell(row_idx, col_name):\n",
+    "    col_idx = cs220_header.index(col_name)\n",
+    "    val = cs220_data[row_idx][col_idx]\n",
+    "    if val == \"\":\n",
+    "        return None\n",
+    "    elif col_name == \"Age\":\n",
+    "        if \".\" in val:\n",
+    "            return None\n",
+    "        return int(val)\n",
+    "    ##TODO add an elif for converting latitude and longitude to float\n",
+    "    else:\n",
+    "        return val"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "Let's test our improved `cell()` function and make sure it is working properly.\n",
+    "\n",
+    "Since the `Age`, `Latitude` and `Longitude` should now all be numbers, let's loop through the data and check the return type for these columns.  Finish the code in the cell below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "for i in range(len(cs220_data)):\n",
+    "    age = cell(i,'Age')\n",
+    "    if age == None or type(age) == int:\n",
+    "        pass\n",
+    "    else:\n",
+    "        print(\"found an age which is the wrong type:\",age)\n",
+    "    ##TODO add checks for latitude and longitude"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "### Helper Function: Getting smallest value in column\n",
+    "\n",
+    "Now let's think about functions as tools.  What tool would we want to help answer questions we might have.  One possible question we might have revolves around find the smallest or largest value in a column.\n",
+    "\n",
+    "And if we think for a moment about the design of the function, we can make it very flexible.  In other words it might help with multiple possible questions.  Some possible questions involving the smallest value in a column might be:\n",
+    "\n",
+    "* What is the age of the youngest person who answered the survey?\n",
+    "* What is the age of the youngest person in your lecture?\n",
+    "* What song did the youngest person enter?\n",
+    "\n",
+    "All of these questions involve a youngest person.  But notice two things:\n",
+    "\n",
+    "* Knowing the index of this person allows us to find out other properties about the person\n",
+    "* Working with a subset of the data (e.g. youngest in your lecture) is a common practice\n",
+    "\n",
+    "To handle these different ways of looking for the youngest, we can create our function like so:\n",
+    "\n",
+    "```python\n",
+    "def get_smallest(col_name, indexes=None):\n",
+    "    \"\"\"Returns the index of the smallest value\n",
+    "    for the column with col_name, looking only\n",
+    "    at the rows in indexes.  If indexes is None\n",
+    "    then looks at all rows.\"\"\"\n",
+    "```\n",
+    "\n",
+    "Notice that the function returns the index, not the value.  The function also has an optional `indexes` parameter which can be used if you already have a subset of the rows you want to work with.\n",
+    "\n",
+    "Finish writing the function below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "def get_smallest(col_name, indexes=None):\n",
+    "    \"\"\"Returns the index of the smallest value\n",
+    "    for the column with col_name, looking only\n",
+    "    at the rows in indexes.  If indexes is None\n",
+    "    then looks at all rows.\"\"\"\n",
+    "    if indexes == None:\n",
+    "        indexes = list(range(0,len(cs220_data)))\n",
+    "    smallest_value = None\n",
+    "    smallest_index = 0\n",
+    "    for i in indexes:\n",
+    "        val = cell(i,col_name)\n",
+    "        if val == None:\n",
+    "            continue\n",
+    "        ##TODO FINISH Function\n",
+    "    return smallest_index"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "Okay, if we have written our function well, we can now use it to answer the questions we have.  Use the `get_smallest()` to answer the questions in the cell below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "##TODO What is the age of the youngest person who answered the survey?\n",
+    "\n",
+    "\n",
+    "##TODO What song did the youngest person enter?\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "### Helper Function: Filter rows by a column that matches a value\n",
+    "Notice we didn't ask one question -- What is the age of the youngest person in your lecture?  To answer this we first need to get a list of just the rows that are for your lecture.\n",
+    "\n",
+    "Let's create a filter function that will return a list of the indexes that meet some matching criteria.  And we can still use the option indexes idea.\n",
+    "\n",
+    "```python\n",
+    "def filter_match(col_name,col_value,indexes=None):\n",
+    "    \"\"\"returns a subset of indexes where the \n",
+    "    col_name has a value of col_value.  If indexes\n",
+    "    is None then looks at all rows\"\"\"\n",
+    "```\n",
+    "\n",
+    "Finish the code in the cell below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "def filter_match(col_name,col_value,indexes=None):\n",
+    "    if indexes == None:\n",
+    "        indexes = list(range(len(cs220_data)))\n",
+    "    ret_value = []\n",
+    "    for i in indexes:\n",
+    "        val = cell(i,col_name)\n",
+    "        ##TODO: Finish function\n",
+    "    return ret_value"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "Okay, use this `filter_match()` function, perhaps combined with `get_smallest()`, to answer the questions in the cell below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "## TODO how many people are in your lecture who filled out the survey?\n",
+    "\n",
+    "## TODO What is the age of the youngest person in your lecture?\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "### Helper Function: Filter rows by a column that contains a value\n",
+    "Exact matching is only one way that we might want to filter our data.  Another possible way would be if a column contains a particular value as a portion of what was entered.  For example, how many primary majors are Engineering majors?  Since the field is a string and \"Engineering\" is only a portion of the value, we really want to see of the field contains the value.\n",
+    "\n",
+    "Finish the `filter_contains()` function below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "def filter_contains(col_name,col_value,indexes=None):\n",
+    "    \"\"\"returns a subset of indexes where the column\n",
+    "    col_name has values that are strings and col_value is\n",
+    "    a portion of the value (case insensitive)\n",
+    "    \"\"\"   \n",
+    "    if indexes == None:\n",
+    "        indexes = list(range(len(cs220_data)))\n",
+    "    ret_value = []\n",
+    "    col_value = col_value.lower()\n",
+    "    for i in indexes:\n",
+    "        val = cell(i,col_name)\n",
+    "        if val == None:\n",
+    "            continue\n",
+    "        val = val.lower()\n",
+    "        ##TODO FINISH FUNCTION\n",
+    "    return ret_value"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "With our functions we can answer some rather challenging questions."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "## TODO: How many people in your lecture are majoring in Engineering?\n",
+    "\n",
+    "\n",
+    "## TODO: What Bruno Mar's songs did people enter?\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "Come up with your own questions where you can use these functions."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "## TODO: What is your question?  Write the question then write code to answer it.\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "## Sorting\n",
+    "\n",
+    "There are two ways common ways in Python to sort a list.  One way modifies the original list and the second creates a new list that is sorted but does not modify the original list.\n",
+    "\n",
+    "- The `sorted()` function creates a new sorted list and leaves the original list unmodified.\n",
+    "- The `.sort()` method sorts the original list, mutating it.\n",
+    "\n",
+    "```python\n",
+    "x = [2, 4, 1]\n",
+    "y = sorted(x)\n",
+    "print(x)\n",
+    "print(y)\n",
+    "```\n",
+    "```\n",
+    "[2,4,1]\n",
+    "[1,2,4]\n",
+    "```\n",
+    "\n",
+    "```python\n",
+    "x = [2, 4, 1]\n",
+    "y = x.sort()\n",
+    "print(x)\n",
+    "print(y)\n",
+    "```\n",
+    "```\n",
+    "[1,2,4]\n",
+    "None\n",
+    "```\n",
+    "\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "# TODO Sort using sorted() function\n",
+    "\n",
+    "x = [2, 4, 1]\n",
+    "y = ...\n",
+    "print(x)\n",
+    "print(y)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# TODO Sort using sort() method\n",
+    "x = [2, 4, 1]\n",
+    "y = ...\n",
+    "\n",
+    "print(x)\n",
+    "print(y)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## You Try It\n",
+    "\n",
+    "Using sorting and the functions above to find:\n",
+    "\n",
+    "- A sorted list of songs from those who run and are over 20\n",
+    "- A sorted list of majors of the procrastinators, removing duplicates"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "##TODO: Sorted list of songs from runners over 20\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "##TODO: Sorted list of majors by procrastinators -- no duplicates\n"
+   ]
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Python 3 (ipykernel)",
+   "language": "python",
+   "name": "python3"
+  },
+  "language_info": {
+   "codemirror_mode": {
+    "name": "ipython",
+    "version": 3
+   },
+   "file_extension": ".py",
+   "mimetype": "text/x-python",
+   "name": "python",
+   "nbconvert_exporter": "python",
+   "pygments_lexer": "ipython3",
+   "version": "3.10.6"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice_Solution.ipynb b/f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice_Solution.ipynb
new file mode 100644
index 0000000..4756efd
--- /dev/null
+++ b/f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_List_Practice_Solution.ipynb
@@ -0,0 +1,893 @@
+{
+ "cells": [
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Resources To Improve In The Course\n",
+    "\n",
+    "* **CS 220 Office Hours** -- As I'm sure you know, you can go to the [course office hours](https://cs220.cs.wisc.edu/f24/schedule.html) to get help with labs and projects.\n",
+    "* **CS Learning Center** -- Offer free [small group tutoring](https://www.cs.wisc.edu/computer-sciences-learning-center-cslc/), not for debugging your programs, but to talk about course concepts.\n",
+    "* **Undergraduate Learning Center** -- Provides tutoring and [academic support](https://engineering.wisc.edu/student-services/undergraduate-learning-center/).  They have [drop-in tutoring](https://intranet.engineering.wisc.edu/undergraduate-students/ulc/drop-in-tutoring/)."
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## Warmup"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Warmup 0: Hotkeys\n",
+    "# We move quickly, it's good to know some hotkeys!\n",
+    "\n",
+    "# All-around good-to-knows...\n",
+    "#  Ctrl+A: Select all the text in a cell.\n",
+    "#  Ctrl+C: Copy selected text.\n",
+    "#  Ctrl+X: Cut selected text.\n",
+    "#  Ctrl+V: Paste text from clipboard.\n",
+    "#  Ctrl+S: Save.\n",
+    "\n",
+    "# Jupyter-specific good-to-knows...\n",
+    "#  Ctrl+Enter: Run Cell\n",
+    "#  Ctrl+/: Comment/uncomment sections of code.\n",
+    "#  Esc->A: Insert cell above\n",
+    "#  Esc->B: Insert cell below\n",
+    "#  Esc->Shift+L: Toggle line numbers (not working on my machine, but can look under View->Show Line Numbers).\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 15,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[]\n",
+      "['grocery shop', 'read', 'bike ride']\n",
+      "['grocery shop', 'read', 'bike ride', 'sleep', 'sleep', 'and more sleep']\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Warmup 1: Empty List\n",
+    "\n",
+    "weekend_plans = []  # I have no weekend plans :(\n",
+    "print(weekend_plans)\n",
+    "\n",
+    "# TODO add three things to your weekend plans using .append\n",
+    "weekend_plans.append('grocery shop')\n",
+    "weekend_plans.append('read')\n",
+    "weekend_plans.append('bike ride')\n",
+    "print(weekend_plans)\n",
+    "\n",
+    "# TODO add three things to your weekend using .extend\n",
+    "weekend_plans.extend(['sleep','sleep','and more sleep'])\n",
+    "print(weekend_plans)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 18,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "XO\n",
+      "OO\n",
+      "XX\n",
+      "O\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Warmup 2: Tic-Tac-Toe\n",
+    "\n",
+    "board = []\n",
+    "\n",
+    "# TODO using .append(), add three lists of row data for tic-tac-toe (Noughts and Crosses)\n",
+    "# make up the placement of X's and O's.\n",
+    "board.append(['X','','O'])\n",
+    "board.append(['','O','O'])\n",
+    "board.append(['X','','X'])\n",
+    "\n",
+    "for row in board:\n",
+    "    for item in row:\n",
+    "        print(item,end='')\n",
+    "    print()\n",
+    "\n",
+    "# TODO print out the center value using double indexing\n",
+    "print(board[1][1])"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "# List Practice\n",
+    "\n",
+    "**Readings**\n",
+    "\n",
+    "- Optional: [Set Data Type](https://docs.python.org/3.10/library/stdtypes.html#set-types-set-frozenset)\n",
+    "- Optional: [W3Schools on Set Data Type](https://www.w3schools.com/python/python_sets.asp)\n",
+    "\n",
+    "**Objectives**\n",
+    "\n",
+    "- Understand and use the `set` data type for removing duplicates\n",
+    "- Create helper functions for filtering data\n",
+    "- Use the `sort()` and `sorted()` functions and understand the difference between them.\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "## Set Data Type\n",
+    "\n",
+    "Another data type similar to a list is a set.  To create a set you use curly braces instead of square brackets.  Sets cannot contain duplicate items.\n",
+    "\n",
+    "```python\n",
+    "    my_set = {2, 3, 3, 4}\n",
+    "    print(my_set)\n",
+    "```\n",
+    "```\n",
+    "    {2,3,4}\n",
+    "```\n",
+    "\n",
+    "One common use for sets is to remove duplicates from a list.  You can do this by converting a list to a set and then convert it back again.\n",
+    "\n",
+    "```python\n",
+    "    groceries = ['apples','oranges','kiwis','apples']\n",
+    "    groceries = list(set(groceries))\n",
+    "    print(groceries)\n",
+    "```\n",
+    "```\n",
+    "    ['apples','oranges','kiwis']\n",
+    "```\n",
+    "\n",
+    "You can read more about sets and the methods that you can use with them at [w3school](https://www.w3schools.com/python/python_sets.asp).\n",
+    "\n",
+    "### You Try It\n",
+    "\n",
+    "Use the `.add()` and `.discard()` methods to the set below to add at least 4 weekend plans, with one being a duplicate and then removing one of the weekend plans."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 19,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "{'sleep', 'bike', 'read'}\n",
+      "{'sleep', 'bike', 'read'}\n"
+     ]
+    }
+   ],
+   "source": [
+    "# However, it is unordered and unique.\n",
+    "# The function names are also a little different!\n",
+    "weekend_plans = set() # creates an empty set\n",
+    "\n",
+    "## TODO: use .add() to add 4 items to weekend_plans with one being a duplicate\n",
+    "weekend_plans.add(\"sleep\")\n",
+    "weekend_plans.add(\"sleep\")\n",
+    "weekend_plans.add(\"read\")\n",
+    "weekend_plans.add(\"bike\")\n",
+    "\n",
+    "print(weekend_plans)\n",
+    "\n",
+    "# TODO: use .discard() to remove one of the items from the set\n",
+    "# Unlike a list's remove, this will not throw an error if DNE (does not exist).\n",
+    "weekend_plans.discard(\"work\")\n",
+    "print(weekend_plans)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "## Helper Functions\n",
+    "\n",
+    "Last class we created the `cell()` function to help with selecting values from the survey data.  Let's take this a step further today and create a range of helper functions that we can use to answer more challenging questions.  Investing time into creating good helper functions can speed up tackling answering these challenging questions and they provide flexibility so you can use the same helper functions to answer a variety of questions.\n",
+    "\n",
+    "First, let's create our `process_csv()` function to help with loading the data and then split the data into the header and data portions.  Finish the code in the cells below:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 20,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "import csv\n",
+    "\n",
+    "# source:  Automate the Boring Stuff with Python Ch 12\n",
+    "def process_csv(filename):\n",
+    "    exampleFile = open(filename, encoding=\"utf-8\")  \n",
+    "    exampleReader = csv.reader(exampleFile) \n",
+    "    exampleData = list(exampleReader)        \n",
+    "    exampleFile.close()  \n",
+    "    return exampleData"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 21,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "# TODO: Seperate the data into 2 parts...\n",
+    "# a header row, and a list of data rows\n",
+    "cs220_csv = process_csv('cs220_survey_data.csv')\n",
+    "cs220_header = cs220_csv[0]\n",
+    "cs220_data = cs220_csv[1:]"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "Let's make the `cell()` function again, but this time let's make it a little more robust.  If you recall we filtered empty values and returned the `None` instead of an empty string.  We also converted the `Age` column's type to int() (and filtered out if a decimal point was found.\n",
+    "\n",
+    "Let's take that a step further and think about every column and what values we would want to filter out and instead return a `None` and what the data types we would want to return.  The `Latitude` and `Longitude` columns contain values that would best be treated as a float.  Can you think of any other changes to data types or specific values that should be filtered out?\n",
+    "\n",
+    "Make those changes to the cell function below:"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 22,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "# Remember the improved cell function\n",
+    "\n",
+    "def cell(row_idx, col_name):\n",
+    "    col_idx = cs220_header.index(col_name)\n",
+    "    val = cs220_data[row_idx][col_idx]\n",
+    "    if val == \"\":\n",
+    "        return None\n",
+    "    elif col_name == \"Age\":\n",
+    "        if \".\" in val:\n",
+    "            return None\n",
+    "        return int(val)\n",
+    "    elif col_name == 'Latitude' or col_name == 'Longitude':\n",
+    "        return float(val)\n",
+    "    else:\n",
+    "        return val"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "Let's test our improved `cell()` function and make sure it is working properly.\n",
+    "\n",
+    "Since the `Age`, `Latitude` and `Longitude` should now all be numbers, let's loop through the data and check the return type for these columns.  Finish the code in the cell below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 23,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "for i in range(len(cs220_data)):\n",
+    "    age = cell(i,'Age')\n",
+    "    if age == None or type(age) == int:\n",
+    "        pass\n",
+    "    else:\n",
+    "        print(\"found an age which is the wrong type:\",age)\n",
+    "    lat = cell(i,'Latitude')\n",
+    "    if lat == None or type(lat) == float:\n",
+    "        pass\n",
+    "    else:\n",
+    "        print(\"found a latitude which is the wrong type:\",lat)\n",
+    "    long = cell(i,'Longitude')\n",
+    "    if long == None or type(long) == float:\n",
+    "        pass\n",
+    "    else:\n",
+    "        print(\"found a longitude which is the wrong type:\",long)\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "### Helper Function: Getting smallest value in column\n",
+    "\n",
+    "Now let's think about functions as tools.  What tool would we want to help answer questions we might have.  One possible question we might have revolves around find the smallest or largest value in a column.\n",
+    "\n",
+    "And if we think for a moment about the design of the function, we can make it very flexible.  In other words it might help with multiple possible questions.  Some possible questions involving the smallest value in a column might be:\n",
+    "\n",
+    "* What is the age of the youngest person who answered the survey?\n",
+    "* What is the age of the youngest person in your lecture?\n",
+    "* What song did the youngest person enter?\n",
+    "\n",
+    "All of these questions involve a youngest person.  But notice two things:\n",
+    "\n",
+    "* Knowing the index of this person allows us to find out other properties about the person\n",
+    "* Working with a subset of the data (e.g. youngest in your lecture) is a common practice\n",
+    "\n",
+    "To handle these different ways of looking for the youngest, we can create our function like so:\n",
+    "\n",
+    "```python\n",
+    "def get_smallest(col_name, indexes=None):\n",
+    "    \"\"\"Returns the index of the smallest value\n",
+    "    for the column with col_name, looking only\n",
+    "    at the rows in indexes.  If indexes is None\n",
+    "    then looks at all rows.\"\"\"\n",
+    "```\n",
+    "\n",
+    "Notice that the function returns the index, not the value.  The function also has an optional `indexes` parameter which can be used if you already have a subset of the rows you want to work with.\n",
+    "\n",
+    "Finish writing the function below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 26,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "def get_smallest(col_name, indexes=None):\n",
+    "    \"\"\"Returns the index of the smallest value\n",
+    "    for the column with col_name, looking only\n",
+    "    at the rows in indexes.  If indexes is None\n",
+    "    then looks at all rows.\"\"\"\n",
+    "    if indexes == None:\n",
+    "        indexes = list(range(0,len(cs220_data)))\n",
+    "    smallest_value = None\n",
+    "    smallest_index = 0\n",
+    "    for i in indexes:\n",
+    "        val = cell(i,col_name)\n",
+    "        if val == None:\n",
+    "            continue\n",
+    "        if smallest_value == None or val < smallest_value:\n",
+    "            smallest_value = val\n",
+    "            smallest_index = i\n",
+    "    return smallest_index"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "Okay, if we have written our function well, we can now use it to answer the questions we have.  Use the `get_smallest()` to answer the questions in the cell below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 29,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "0\n",
+      "You Should See Me in a Crown by Billie Eilish\n"
+     ]
+    }
+   ],
+   "source": [
+    "##TODO What is the age of the youngest person who answered the survey?\n",
+    "print(cell(get_smallest('Age'),'Age'))\n",
+    "\n",
+    "##TODO What song did the youngest person enter?\n",
+    "print(cell(get_smallest('Age'),'Song'))"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "### Helper Function: Filter rows by a column that matches a value\n",
+    "Notice we didn't ask one question -- What is the age of the youngest person in your lecture?  To answer this we first need to get a list of just the rows that are for your lecture.\n",
+    "\n",
+    "Let's create a filter function that will return a list of the indexes that meet some matching criteria.  And we can still use the option indexes idea.\n",
+    "\n",
+    "```python\n",
+    "def filter_match(col_name,col_value,indexes=None):\n",
+    "    \"\"\"returns a subset of indexes where the \n",
+    "    col_name has a value of col_value.  If indexes\n",
+    "    is None then looks at all rows\"\"\"\n",
+    "```\n",
+    "\n",
+    "Finish the code in the cell below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 30,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "def filter_match(col_name,col_value,indexes=None):\n",
+    "    if indexes == None:\n",
+    "        indexes = list(range(len(cs220_data)))\n",
+    "    ret_value = []\n",
+    "    for i in indexes:\n",
+    "        val = cell(i,col_name)\n",
+    "        if col_value == val:\n",
+    "            ret_value.append(i)\n",
+    "    return ret_value"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "Okay, use this `filter_match()` function, perhaps combined with `get_smallest()`, to answer the questions in the cell below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 37,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "245\n",
+      "17\n"
+     ]
+    }
+   ],
+   "source": [
+    "## TODO how many people are in your lecture who filled out the survey?\n",
+    "print(len(filter_match('Lecture','LEC003')))\n",
+    "## TODO What is the age of the youngest person in your lecture?\n",
+    "idx=get_smallest('Age',filter_match('Lecture','LEC003'))\n",
+    "print(cell(idx,'Age'))"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "### Helper Function: Filter rows by a column that contains a value\n",
+    "Exact matching is only one way that we might want to filter our data.  Another possible way would be if a column contains a particular value as a portion of what was entered.  For example, how many primary majors are Engineering majors?  Since the field is a string and \"Engineering\" is only a portion of the value, we really want to see of the field contains the value.\n",
+    "\n",
+    "Finish the `filter_contains()` function below."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 43,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [],
+   "source": [
+    "def filter_contains(col_name,col_value,indexes=None):\n",
+    "    \"\"\"returns a subset of indexes where the column\n",
+    "    col_name has values that are strings and col_value is\n",
+    "    a portion of the value (case insensitive)\n",
+    "    \"\"\"   \n",
+    "    if indexes == None:\n",
+    "        indexes = list(range(len(cs220_data)))\n",
+    "    ret_value = []\n",
+    "    col_value = col_value.lower()\n",
+    "    for i in indexes:\n",
+    "        val = cell(i,col_name)\n",
+    "        if val == None:\n",
+    "            continue\n",
+    "        val = val.lower()\n",
+    "        if val.find(col_value) > -1:\n",
+    "            ret_value.append(i)\n",
+    "    return ret_value"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "With our functions we can answer some rather challenging questions."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 48,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "245 99\n",
+      "['Runaway Baby - Bruno Mars', 'If I knew - Bruno Mars\\n\\n\\xa0', 'But Me - Ty Myers\\n\\nSomewhere in Brooklyn - Bruno Mars', 'Just the Way You Are by Bruno Mars', 'Talking to the moon -Bruno Mars']\n"
+     ]
+    }
+   ],
+   "source": [
+    "## TODO: How many people in your lecture are majoring in Engineering?\n",
+    "my_lec_idx = filter_match('Lecture','LEC003')\n",
+    "engineers_in_my_lec = filter_contains('Primary Major','Engineering',my_lec_idx)\n",
+    "print(len(my_lec_idx),len(engineers_in_my_lec))\n",
+    "\n",
+    "## TODO: What Bruno Mar's songs did people enter?\n",
+    "idxs = filter_contains('Song','Mars')\n",
+    "songs = []\n",
+    "for i in idxs:\n",
+    "    val = cell(i,'Song')\n",
+    "    if val != None:\n",
+    "        songs.append(val)\n",
+    "songs=list(set(songs))\n",
+    "print(songs)\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "Come up with your own questions where you can use these functions."
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 58,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "['Singer: Haruno\\n\\nSong: Like a seraph', 'im fine with any song', 'Bohemian Rhapsody by Queen', '夏夜最后的烟火 -Ele Yan', 'Island in the Sun by Weezer', \"Life's Been Good -Joe Walsh\", 'How You Like That by Blackpink', 'De Carolina by Rauw Alejandro', 'I Had Some Help - Morgan Wallen and Post Malone', 'kenye west', 'Blondie - Current Joys', 'Epitaph-king crimson', 'Hotel California', 'Useless by Omar Apollo', 'Blue Notes by Meek Mill', 'The Ballad of Jane Doe by Emily Rohm & Ride the Cyclone World Premiere Cast Recording Ensemble', 'Video Killed The Radio Star --- The Buggles', 'The Groovy Cat - PAWSA', 'the prophecy by taylor swift', \"I Didn't Know- Skinshape\\n\\n\\xa0\\n\\nDefinitely a song to play for class.\", 'I Know You Want Me by Pitbull', 'One of my favorite songs is \"Creep,\" by Radio Head.', 'Flashing Lights - Kanye West\\xa0', 'But Me - Ty Myers\\n\\nSomewhere in Brooklyn - Bruno Mars', 'Good Time - Collab by Carly Rae Jepsen and Owl City', 'Just the Way You Are by Bruno Mars', 'Lose Yourself by Eminem\\xa0', 'I love you I hate you - Playboycarti', 'Get Free by Lana Del Ray', '\"On, Wisconsin!\" by William T. Purdy', 'Wishlist, Denzel Curry', 'ed sheeran\\n\\n\\xa0', 'Test Drive (From How To Train Your Dragon) - John Powell', 'Poker Face - Lucki', 'Asareje - Spanish version', 'Guess by Charli XCX', 'Born to Run - Bruce Springsteen', 'Good days by sza', 'American Nights - Zach Bryan', 'Radio\\n\\nLana Del Ray', 'Scenario by A Tribe Called Quest.', 'What you know, Two Door Cinema Club', 'Circle\\n\\n\\xa0\\n\\n\\xa0', 'Dress Code - Mau p', \"If I Ain't Got You\\n\\n- Alicia Keys\", 'I like listening to quran, Al mumminun by yasser al dosari, al haqqah by yousef soqier and by naser al qatmi are also very good surahs', 'My favorite singer is Jay chou. I like all of songs of him', 'double take - Dhruv', 'pushing 21', 'Birds of a Feather Billie Eilish', 'Dang! - Mac Miller, Anderson .Paak', 'Slide - Calvin Harris, Frank Ocean, Migos', 'Vienna by Billy Joel', 'Pretty Slowly By Benson Boone', 'Broken Halos by For King and Country', 'Life is a Highway, Rascal Flatts', 'smells like teen spirit by Nirvana', 'betty taylor swift', 'n/a', 'Middle of the Night - loveless', 'Rich Girl by Hall And Oates', 'Dusk Till Dawn by Sia and Zayn', 'Wo Men De Ge - Wang Leehom', 'Springsteen - Eric Church', 'Feel it - D4vd', 'Feeling good, Michael Buble', 'Thunder struck-AC/DC', 'Aja by Steely Dan', 'Feel Like That - Stick Figure featuring Sublime', 'Someone New - Hozier', 'Tie Up-Zac Brown Band', 'Everybody wants to rule the world, Tears For Fears\\xa0', 'Virginia Beach-Drake', 'Is there still a light on by Adam Melchor, or There is a light and it never goes out by the Smiths', 'I really like Big Dawgs right now by Hanumankind and Kalmi', 'From the Start, Good Kid', 'Mercy Mercy By Marvi Gaye', 'The Heart Part 5 - Kendrick Lamar.', 'Nights by Frank Ocean', 'No Sleep Till Brooklyn by Beastie Boys', 'Fast Car by Luke Combs', 'Electric Feel - MGMT', 'Title: Black eye\\xa0\\n\\nArtist: VERNON', 'Thinking Bout You- Frank Ocean', 'When the sun hits, slowdive', 'Greedy- Tate McRae', 'classical music.', 'My Love Westlife', 'Us Without Me - Grentperez', 'Get By- Jelly Roll', 'Touch Me - Rui Da Silva', 'Passionfruit - Drake', 'Just Like Heaven by The Cure', 'Innerbloom by Rufus du Sol', '\"Where the wild things are\" - Luke Combs\\xa0', 'The Thief in Marrakesh by Arc De Soleil', 'fine Noah Kahan\\xa0', 'Frank Ocean:: All his songs in the albums :\"BLOND, CHANNEL ORANGE and Nostalgia/Ultra\\n\\n(My most favorite is BLOND)', 'Look Back At It - A Boogie Wit da Hoodie', 'Fantasy -Earth, Wind, & Fire', 'Better Together by Jack Johnson', 'High School in Jakarta by Niki Zenfaya', 'Satellite by Harry Styles.', 'Hotel by Claire Rosinkranz', 'Two Princes- Spin Doctors', 'Find a Way - A Tribe Called Quest', 'Brown Eyed Girl - Van Morrison', 'Dancing in the Dark by Bruce Springsteen', 'Everybody Wants to Rule the World\\n\\nTears for Fears', 'Mad Man Moon - Genesis', 'leavemealone by Fred Again', 'Please, Please, Please by Sabrina Carpenter', 'BSW -Mokambo Gang', 'Fluorescent Adolescent - Arctic Monkeys', 'Hacker by Death Grips', 'Black Smoke Rising by Greta Van Fleet', 'Kya Yahi Pyaar Hai\\n\\nKishore Kumar, Asha Bhosle', 'Jesus Walks, by Kanye West', 'Mr. red white and blue\\xa0\\n\\nby: Cofey Anderson', 'JAUH by Aziz Harun', 'You Are Not Alone - Michael Jackson', 'Right now - van halen', 'Otro atardecer by Bad Bunny', 'Northern Attitude by Noah Kahn & Hozier\\xa0', 'Someone you loved by Lewis Capaldi.', '\"The Chain\" by Fleetwood Mac', 'Earth by ClownCore', 'Turn my Swag On, Soulja Boy', 'Animal Spirits by Vulfpeck', 'Burn, Burn, Burn,\\xa0\\n\\n-Zach Bryan', 'System of a Down - B.Y.O.B.', 'Nirvana by INNA', 'MESSEY- Tommy Richman', 'Torey Lanez - Pink Dolphin Sunset', \"Sarah's Place By: Zach Bryan\\xa0\", 'Crash Into Me by Dave Matthews', 'Something in the Orange - Zach Bryan', 'Mercedes - Brent Faiyaz', 'SHAUN feat. Conor Maynard - Way Back Home', 'Flapper Girl - The Lumineers', '\"When You Were Mine\" - Joy Crookes', 'Heart shaped box - by Nirvana', 'Feathered Indians - Tyler Childers', 'Time in a Bottle by Jim Croce', \"I Don't Care by Ed Sheeran and Justin Bieber\", \"I'm Goin' Down by Bruce Springsteen\", 'Pink Pony Club by Chapel Roan', 'Stick Season', 'La Santa by Bad Bunny', '\"Ophelia\" by the Lumineers', 'Can I Kick It? by A Tribe Called Quest', 'Youngblood by 5 Seconds of Summer', 'Drew Barrymore by SZA', 'Jackie and Wilson, Hozier', 'Sun to Me by Zach Bryan', 'Fatal Trouble by ENHYPEN', 'Rock and Roll by Ken Carson', 'Funny Thing by Thundercat', 'Pyramid - ALYSS', 'Rather Be - Clean Bandit', 'thats life by frank sinatra', 'Breakdown by Jack Johnson', 'Ring of Fire - Johnny Cash', 'Brandy, Looking Glass', 'Astrothunder by Travis Scott', 'Jigsaw Falling Into Place by Radiohead', 'The Cave by Mumford and Sons', \"Ain't no love in Oklahoma by Luke Combs\", 'American pie by Don Mclean', '\"Follow God\" - Kanye West', 'Taylor Swift', 'baby birkin - gunna\\xa0', 'International Love by Pitbull', 'Springsteen by Eric Church\\xa0', 'The Ballad of Sir Frankie Crisp - George Harrison', 'Lady Killers II by G-Eazy', 'I Will Survive by Gloria Gaynor', 'this is how we roll flordia georgia line', 'This is me- Keala Settle', 'Style by Taylor Swift!!', 'Running up that hill, by Marc Canham & Candy Says', '\"okayy\" - Koi', 'Confident Demi Lovato', \"Fats Domino- Ain't That a Shame\", 'Falling by Trevor Daniel', \"Devil's Advocate by The Neighbourhood\", 'anything by Beyonce', 'Marigold by Aimyon', 'Where the Wild Things Are -Luke Combs\\xa0', 'Birds of a Feather by Billie Eilish', 'Chaleya by Arijit Singh and Shilpa Rao', 'Running out of time- Tyler the creator', 'Moonlight Sonata by Beethoven', 'Everywhere, Everything by Noah Kahan', 'Rumor Has It- Adele', 'February Seven by The Avett Brothers', 'Sail Away - David Gray', 'I did something bad - Taylor Swift', 'Creed - One Last Breath', 'Seryoga - Chernyi Bumer', 'Things you said\\n\\nCody fry', 'Burn Burn Burn by Zach Bryan', 'Get It Together by Drake', 'Dirty Deeds Done Dirt Cheap----AC/DC', 'Jersey Giant by Evan Honer', 'Follow Me - Uncle kracker', 'Takin it to the Streets - The Doobie Brothers', 'Mozzarella, Yung Gravy and Lil Keed', 'Simple Man by Shinedown', 'Salad Days - Mac Demarco', 'Till It Shines - Bob Segar', 'Miserere Mei- Gregorio Allegri\\n\\n\\xa0', 'Mr. Blue Sky,\\xa0 by Electric Light Orchestra', 'overwhelmed by Ryan mack', 'La Belle Fleur Sauvage - Lord Huron', 'The Sweet Escape by Gwen Stefani, Akon', 'varnish-African American sound recordings', 'Jesus Walks by Kanye West\\xa0', 'We Are the People - Empire of the Sun', 'Stars - HUM', 'Scar Tissue - Red Hot Chili Peppers', '\"Tattoo\" by Jordan Sparks', 'Sunflower - By: Post Malone\\xa0', 'Everlong - Foo Fighters', 'Wonderwall, Oasis\\xa0', 'Me and My Guitar, A Boogie wit da Hoodie', 'Friendly Pressure - jhelisa, sunship', 'Brandy - Looking Glass\\n\\n\\xa0', 'Juna - Clairo', 'Perfect Pair by beabadoobee', \"There's nothin' holdin' me back - shawn mendes\", 'Boys of Faith -Zach Bryan', 'arabella by arctic monkeys', 'If I knew - Bruno Mars\\n\\n\\xa0', 'circadian rhythm - Drake', '\"It was a good day\" Ice Cube', 'Lost in Japan', 'Bless the Telephone by Labi Siffre', 'You make my dreams come true', 'The Chain - Fleetwood Mac', 'black hole sun- soundgarden\\xa0', 'Close to you - Gracie Abrams\\xa0', 'Run out of Tears by Riley green.\\xa0', 'too fast by sonder', 'Booster Seat by Spacey Jane', 'Party!! Ryokuoushoku Shakai', 'Cleaning windows by van morrison', 'Heartbreaker, Justin Bieber\\xa0', 'Monster\\n\\nJustin Bieber', 'Ballade pour Adeline', 'We Are (One Piece) by Miura Jam', 'Springsteen - Eric Church', 'Skater Boi - Avril Lavigne', '\"Earfquake\" by Tyler, the Creator\\xa0', 'Alchemy by Taylor Swift', 'Any song by Zach Bryan.', 'Sandpaper by Zach Bryan(feat. Bruce Springsteen)', 'Everywhere Everything by Noah Kahan', 'Ordinary People by John Legend\\xa0', 'Disciples by Tame Impala', 'Stick season by Noah Kahn', 'Any songs :)', 'Free Now by Gracie Abrams', 'What goes around comes back around ,Justin Timberlake\\xa0\\n\\nthe last great American dynasty,Taylor swift\\n\\nwillow,Taylor swift\\n\\nSatellite,Lena(German singer)\\n\\n\\xa0', '360 by Charli xcx', 'Borderline by Tame Impala', '28 by Zach Bryan - maybe recency bias but I love that song', 'Hardwood Floors, Charles Wesley Godwin', 'Untitled 06 by Kendrick Lamar', 'Rock with You by Michael Jackson', 'minimal by ROLE MODEL', 'belong together- Mark Ambor', 'Amsterdam - Guster', 'A.M. Radio- The Lumineers', 'Flags by Coldplay', '\"hey, honey\"\\n\\nBy The 502\\'s', 'NO preferences, will listen to anything that is not country music and taylor swift', 'September - Earth Wind and Fire', 'Call Me - Luke Combs', 'I will not bow - breaking benjamin', 'You are the best thing - ray lamontagne', 'Fearless - Taylor Swift', 'Francis Forever, Mitski\\n\\n505, Arctic Monkeys\\n\\nHotel California, Eagles', '28 Zach Bryan', 'springsteen eric church', 'August - Taylor Swift', 'Silver Lining by Mt Joy', 'Good Morning - Kanye West', 'All of the Lights - Kanye West', 'Margaritaville by Jimmy Buffett\\xa0', 'Julia by Mt. Joy', \"I'd Rather Be With You - Bootsy Collins\", 'Fever Dua Lipa and Angele', 'PRIDE, kendrick lamar', 'Impurities by LE SSERAFIM', 'Redrum\\xa0\\n\\n21 Savage', '\"My Favorite Part\" Mac Miller', 'Butterfly by Crazy Town', 'Summer Days by Anri', 'Got Me Started by Troye Sivan', 'dreams fleetwood mac', 'Classical music.', 'Good Days by SZA', 'Three Little Birds, Bob Marley', 'See You Again by Kali Uchis and Tyler the Creator', 'California dreaming', 'East Side of Sorrow by Zach Bryan', 'Sultans of Swing, Dire Straits', 'Free Now- Gracie Abrams', 'Wake Up Call - Maroon 5', 'Blue Aint Your Color - Keith Urban', 'Mr Blue Sky - Electric Light Orchestra', 'Black by Pearl Jam', 'Small Worlds Mac Miller', 'Black Moon Rising - Black Pumas', 'Slow Dance in A Parking Lot - Thomas Rhett\\xa0', 'Cherub Rock by The Smashing Pumpkins', 'Second Hand News - Fleetwood Mac', 'Two Dozen Roses - Shenandoah', 'Battle symphony Linkin Park', 'Speaking Terms by Snail Mail', 'Black Star- Radiohead', 'Here comes the sun - Beatles', 'I don’t really have a favorite song in particular but I have been listening to a lot of J. Cole.', 'Holiday by Green Day', 'Let it Happen, tame Impala', 'Snow by Zach Bryan', 'Hell of a Way to Go by Riley Green\\xa0', 'Brandy (Through the Looking Glass)', 'Electric Feel - MGMT', '\"Ain\\'t No Rest for the Wicked\" by Cage The Elephant', 'Missing You - The Vamps\\xa0', 'Let it Happen, Tame Impala', 'The Calendar by Panic At The Disco', 'By and By - Caamp', 'Blowing Smoke by Gracie Abrams', 'Wake Up Alone by Amy Winehouse', 'Castle on the hill, Ed Sheeran\\xa0', 'Everywhere by Fleetwood Mac', '\"Prom\" by SZA', 'Hey Ya by Outkast', 'Actual Favorite Songs:\\n\\nEnter the Mirror - Les Rallizes Denudes or The Art of Fugue Contrapunctus IX - Evgeni Koroliov\\n\\nLecture Friendly (?):\\n\\nLove Will Tear Us Apart - Joy Division', 'A Bar Song-Shaboozey', 'Runaway By Kanye West', 'Virtual Insanity by Jamiroquai', 'You Can Call Me Al - Paul Simon\\xa0', \"What once was, Her's\\xa0\", 'Daylight Harry Styles', 'Spice up your life by the Spice Girls\\xa0', 'Viva La Vida by Coldplay', '28 by Zach Bryan', 'Killer Queen- Queen', 'Dreams by Fleetwood Mac', 'I do not have the character to type it but it is by Masayoshi Takanaka.', 'Becky G- Shower', 'Dont Stop Believin - Journey', 'Runaway Baby - Bruno Mars', 'Casualty by Lawrence', 'Magic in the Hamptons, Social House', 'Instagram by DEAN', 'Pain is inevitable - Daniel Ceaser\\n\\nStronger - Kanye West', '\"Sex, Drugs, Etc.\" by Beach Weather', 'Views- Drake', 'if only - the marias', 'Tera hone laga hoon - Atif Aslam', 'Here is Gone-Goo Goo Dolls', 'Starting Over by Chris Stapleton', 'Panama by Sports', 'Brazil by Declan McKenna', 'trouble, cage the elephant', 'Clarity - John Summit', 'Here is Gone-Goo Goo Dolls', 'Pompeii', 'Without Me by Eminem', 'One last time', 'Sky full of Stars by Coldplay\\xa0', 'Alaska, Maggie Rogers', 'Mary on a Cross- Ghost', 'U - Kendrick Lamar', 'Not Likes Us - Kendrick Lamar', 'Taylor Swift\\n\\nAll too Well', 'One Dance - Drake\\xa0', 'Mr. Brightside by the Killers\\n\\n\\xa0', 'I bet on losing dogs by Mitski.', 'G.O.A.T. by Diljit Dosanjh', 'Dog Days Are Over, Florence + The Machine']\n"
+     ]
+    }
+   ],
+   "source": [
+    "## TODO: What is the list of songs by runners\n",
+    "\n",
+    "runners_idx = filter_match('Runner','Yes')\n",
+    "songs = []\n",
+    "for i in runners_idx:\n",
+    "    song = cell(i,'Song')\n",
+    "    if song != None:\n",
+    "        songs.append(song)\n",
+    "print(songs)\n"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "source": [
+    "## Sorting\n",
+    "\n",
+    "There are two ways common ways in Python to sort a list.  One way modifies the original list and the second creates a new list that is sorted but does not modify the original list.\n",
+    "\n",
+    "- The `sorted()` function creates a new sorted list and leaves the original list unmodified.\n",
+    "- The `.sort()` method sorts the original list, mutating it.\n",
+    "\n",
+    "```python\n",
+    "x = [2, 4, 1]\n",
+    "y = sorted(x)\n",
+    "print(x)\n",
+    "print(y)\n",
+    "```\n",
+    "```\n",
+    "[2,4,1]\n",
+    "[1,2,4]\n",
+    "```\n",
+    "\n",
+    "```python\n",
+    "x = [2, 4, 1]\n",
+    "y = x.sort()\n",
+    "print(x)\n",
+    "print(y)\n",
+    "```\n",
+    "```\n",
+    "[1,2,4]\n",
+    "None\n",
+    "```\n",
+    "\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 59,
+   "metadata": {
+    "editable": true,
+    "slideshow": {
+     "slide_type": ""
+    },
+    "tags": []
+   },
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[2, 4, 1]\n",
+      "[1, 2, 4]\n"
+     ]
+    }
+   ],
+   "source": [
+    "# TODO Sort using sorted() function\n",
+    "\n",
+    "x = [2, 4, 1]\n",
+    "y = sorted(x)\n",
+    "print(x)\n",
+    "print(y)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 60,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "[1, 2, 4]\n",
+      "None\n"
+     ]
+    }
+   ],
+   "source": [
+    "# TODO Sort using sort() method\n",
+    "x = [2, 4, 1]\n",
+    "y = x.sort()\n",
+    "\n",
+    "print(x)\n",
+    "print(y)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "## You Try It\n",
+    "\n",
+    "Using sorting and the functions above to find:\n",
+    "\n",
+    "- A sorted list of songs from those who run and are over 20\n",
+    "- A sorted list of majors of the procrastinators, removing duplicates"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 62,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "['\"My Favorite Part\" Mac Miller', '\"On, Wisconsin!\" by William T. Purdy', '\"Tattoo\" by Jordan Sparks', '360 by Charli xcx', 'Any songs :)', 'Asareje - Spanish version', 'BSW -Mokambo Gang', 'Ballade pour Adeline', 'Bless the Telephone by Labi Siffre', 'Booster Seat by Spacey Jane', 'De Carolina by Rauw Alejandro', \"Devil's Advocate by The Neighbourhood\", 'Disciples by Tame Impala', 'Dog Days Are Over, Florence + The Machine', 'Everlong - Foo Fighters', 'Everybody Wants to Rule the World\\n\\nTears for Fears', 'Everybody wants to rule the world, Tears For Fears\\xa0', 'February Seven by The Avett Brothers', 'Good Morning - Kanye West', 'Good Time - Collab by Carly Rae Jepsen and Owl City', 'Guess by Charli XCX', 'Hotel California', 'I Had Some Help - Morgan Wallen and Post Malone', \"If I Ain't Got You\\n\\n- Alicia Keys\", 'Jackie and Wilson, Hozier', 'Let it Happen, Tame Impala', 'Marigold by Aimyon', 'Missing You - The Vamps\\xa0', 'Mr Blue Sky - Electric Light Orchestra', 'Otro atardecer by Bad Bunny', 'Panama by Sports', 'Please, Please, Please by Sabrina Carpenter', 'Rock with You by Michael Jackson', 'Running up that hill, by Marc Canham & Candy Says', 'SHAUN feat. Conor Maynard - Way Back Home', 'Salad Days - Mac Demarco', 'Satellite by Harry Styles.', 'Spice up your life by the Spice Girls\\xa0', 'The Heart Part 5 - Kendrick Lamar.', 'The Thief in Marrakesh by Arc De Soleil', 'Two Princes- Spin Doctors', 'Wake Up Alone by Amy Winehouse', 'Wo Men De Ge - Wang Leehom', 'You Are Not Alone - Michael Jackson', 'You are the best thing - ray lamontagne', 'kenye west', 'n/a', 'pushing 21']\n"
+     ]
+    }
+   ],
+   "source": [
+    "runners_idx = filter_match('Runner','Yes')\n",
+    "older_runners_idx = []\n",
+    "songs = []\n",
+    "for i in runners_idx:\n",
+    "    age = cell(i,'Age')\n",
+    "    song = cell(i,'Song')\n",
+    "    if age == None or song == None:\n",
+    "        continue\n",
+    "    if age > 20:\n",
+    "        songs.append(song)\n",
+    "print(sorted(songs))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 64,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "['Business: Actuarial', 'Business: Finance', 'Business: Information Systems', 'Business: Other', 'Computer Science', 'Data Science', 'Engineering: Biomedical', 'Engineering: Industrial', 'Engineering: Mechanical', 'Engineering: Other', 'Languages', 'Mathematics/AMEP', 'Other (please provide details below).', 'Science: Biology/Life', 'Science: Chemistry', 'Science: Other', 'Science: Physics', 'Statistics']\n"
+     ]
+    }
+   ],
+   "source": [
+    "proc_idx = filter_match('Procrastinator','Yes')\n",
+    "majors = []\n",
+    "for i in proc_idx:\n",
+    "    major = cell(i,'Primary Major')\n",
+    "    if major == None:\n",
+    "        continue\n",
+    "    majors.append(major)\n",
+    "majors=sorted(list(set(majors)))\n",
+    "print(majors)"
+   ]
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Python 3 (ipykernel)",
+   "language": "python",
+   "name": "python3"
+  },
+  "language_info": {
+   "codemirror_mode": {
+    "name": "ipython",
+    "version": 3
+   },
+   "file_extension": ".py",
+   "mimetype": "text/x-python",
+   "name": "python",
+   "nbconvert_exporter": "python",
+   "pygments_lexer": "ipython3",
+   "version": "3.10.6"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_Worksheet_Solution.ipynb b/f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_Worksheet_Solution.ipynb
new file mode 100644
index 0000000..40346f8
--- /dev/null
+++ b/f24/Louis_Lecture_Notes/16_List_Practice/Lec_16_Worksheet_Solution.ipynb
@@ -0,0 +1,256 @@
+{
+ "cells": [
+  {
+   "cell_type": "code",
+   "execution_count": 10,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Lecture 16 worksheet answers\n",
+    "# https://www.msyamkumar.com/cs220/s22/materials/lec-16-worksheet.pdf\n",
+    "# The purpose of this worksheet is to prepare you for exam questions.\n",
+    "# You should do the worksheet by hand, then check your work.\n",
+    "\n",
+    "# If you have questions please make a public post on Piazza and include the Given\n",
+    "# Students, feel free to answer each other's questions"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 1,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Problem 1 Given:\n",
+    "nums = [100, 2, 3, 40, 99]\n",
+    "words = [\"three\", \"two\", \"one\"]\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "99\n",
+      "[2, 3]\n",
+      "two\n",
+      "w\n",
+      "www\n",
+      "\n",
+      "1\n",
+      "2\n",
+      "[100, 'three']\n",
+      "three,two,one\n",
+      "e,t\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Problem 1 answers\n",
+    "print(nums[-1])\n",
+    "print(nums[1:3])\n",
+    "print(words[1])\n",
+    "print(words[1][1])\n",
+    "print(words[1][-2] * nums[2])\n",
+    "print()\n",
+    "print(words.index(\"two\"))\n",
+    "print(nums[words.index(\"two\")])\n",
+    "print(nums[:1] + words[:1])\n",
+    "print(\",\".join(words))\n",
+    "print((\",\".join(words))[4:7])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 3,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Problem 2 Given:\n",
+    "rows = [[\"x\", \"y\",\"name\"], [3,4,\"Alice\"], [9,1,\"Bob\"], [-3,4,\"Cindy\"]]\n",
+    "header = rows[0]\n",
+    "data = rows[1:]\n",
+    "X = 0\n",
+    "Y = 1\n",
+    "NAME = 2\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "4\n",
+      "3\n",
+      "3\n",
+      "Alice\n",
+      "Bob\n",
+      "\n",
+      "2\n",
+      "Cindy\n",
+      "3.0\n",
+      "5.0\n",
+      "Alice\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Problem 2 answers\n",
+    "print(len(rows))\n",
+    "print(len(data))\n",
+    "print(len(header))\n",
+    "print(rows[1][-1])\n",
+    "print(data[1][-1])\n",
+    "print()\n",
+    "print(header.index(\"name\"))\n",
+    "print(data[-1][header.index(\"name\")])\n",
+    "print((data[0][X] + data[1][X] + data[2][X]) / 3)\n",
+    "print((data[-1][X] ** 2 + data[-1][Y] ** 2) ** 0.5)\n",
+    "print(min(data[0][NAME], data[1][NAME], data[2][NAME]))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Problem 3 Given:\n",
+    "rows = [ [\"Food Science\", \"24000\", \"0.049188446\", \"62000\"],\n",
+    "         [\"CS\", \"783000\", \"0.049518657\", \"78000\"],\n",
+    "         [\"Microbiology\", \"70000\", \"0.050880749\", \"60000\"],\n",
+    "         [\"Math\", \"433000\", \"0.05293608\", \"66000\"] ]\n",
+    "hd = [\"major\", \"students\", \"unemployed\", \"salary\"]\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 7,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "CS\n",
+      "433000\n",
+      "True\n",
+      "2400070000\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Problem 3 answers\n",
+    "print(rows[1][0])\n",
+    "print(rows[3][hd.index(\"students\")])\n",
+    "print(len(hd) == len(rows[1]))\n",
+    "print(rows[0][1] + rows[2][1])"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 8,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Problem 4 Given:\n",
+    "rows = [ [\"city\", \"state\", \"y14\", \"y15\"],\n",
+    "         [\"Chicago\", \"Illinois\", \"411\", \"478\"],\n",
+    "         [\"Milwaukee\", \"Wisconsin\", \"90\", \"145\"],\n",
+    "         [\"Detroit\", \"Michigan\", \"298\", \"295\"] ]\n",
+    "hd = rows[0]\n",
+    "rows = rows[1:]  #this removes the header and stores the result in rows\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 9,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Chicago\n",
+      "411\n",
+      "False\n",
+      "Detroit, Michigan\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Problem 4 answers:\n",
+    "print(rows[0][hd.index(\"city\")])\n",
+    "print(rows[0][hd.index(\"y14\")])\n",
+    "print(rows[2][hd.index(\"y14\")] < rows[2][hd.index(\"y15\")])\n",
+    "print(\", \".join(rows[-1][:2]))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": []
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Problem 5 Given:\n"
+   ]
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Python 3 (ipykernel)",
+   "language": "python",
+   "name": "python3"
+  },
+  "language_info": {
+   "codemirror_mode": {
+    "name": "ipython",
+    "version": 3
+   },
+   "file_extension": ".py",
+   "mimetype": "text/x-python",
+   "name": "python",
+   "nbconvert_exporter": "python",
+   "pygments_lexer": "ipython3",
+   "version": "3.11.4"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 4
+}
diff --git a/f24/Louis_Lecture_Notes/16_List_Practice/cs220_survey_data.csv b/f24/Louis_Lecture_Notes/16_List_Practice/cs220_survey_data.csv
new file mode 100644
index 0000000..372b449
--- /dev/null
+++ b/f24/Louis_Lecture_Notes/16_List_Practice/cs220_survey_data.csv
@@ -0,0 +1,1105 @@
+Section,Lecture,Printed Copy,Age,Primary Major,Other Majors,Secondary Majors,Zip Code,Latitude,Longitude,Data Science Major,Pizza Topping,Cats or Dogs,Runner,Sleep Habit,Procrastinator,Song
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Engineering: Other,Engineering Mechanics,,53726,44.39,-89.83,No,none (just cheese),dog,No,night owl,Maybe,Family Ties-Baby Keem
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Business: Finance,,economics,53706,22.7626,120.3652,Maybe,pineapple,dog,Yes,no preference,Yes,"Singer: Haruno
+
+Song: Like a seraph"
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,19,Science: Biology/Life,,Data Science,53706,,,Yes,mushroom,cat,No,early bird,Yes,All the songs by New Order
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Data Science,,,53703,37.2788,127.154,Yes,Other,dog,Yes,no preference,Yes,im fine with any song
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,18,Engineering: Industrial,,,53706,42.3601,-71.0589,No,pepperoni,dog,No,night owl,Yes,"Portal Orbital - DJ Darge, DJ L7 da ZN, ...
+
+brazilian funk sorta"
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,18,Computer Science,,,53706,34,108,Maybe,sausage,cat,Yes,night owl,Maybe,Bohemian Rhapsody by Queen
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,20,Data Science,,"******************************
+Economic Analytics Certificate
+******************************",53715,22.5431,114.0579,Yes,pineapple,cat,Yes,night owl,Yes,夏夜最后的烟火 -Ele Yan
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,19,Science: Biology/Life,N/A,N/A,53703,45.0762,-93.511,Maybe,basil/spinach,dog,Yes,early bird,Maybe,Island in the Sun by Weezer
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC003,Yes,19,Engineering: Mechanical,,,53715,44.2539,-88.4824,No,pepperoni,dog,Yes,early bird,No,Life's Been Good -Joe Walsh
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,,Mathematics/AMEP,,,53715,40,-75,No,pepperoni,dog,No,night owl,No,lovely day bill withers
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,21,Mathematics/AMEP,,,53715,40,-75,No,pepperoni,dog,No,night owl,No,
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,,Data Science,,Economics is my second major,53703,39.9042,116.4074,Yes,mushroom,cat,Yes,no preference,Yes,How You Like That by Blackpink
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,19,Engineering: Mechanical,,,53715,45.0468,-87.2981,No,basil/spinach,dog,No,early bird,Yes,misses by Dominic Fike
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,19,Other (please provide details below).,ECONOMICS,Certificate in Data science,53703,21.1734,-86.8281,Maybe,pepperoni,cat,No,early bird,Yes,"Taylor Swift  ------ Style, Daylight
+
+ "
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,21,Other (please provide details below).,Economics,"Data Science, CERT",53711,22.5429,114.0596,No,sausage,dog,No,early bird,Yes,Straight A's - Connor Price
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,22,Data Science,,,53703,36.3504,127.3845,Maybe,pepperoni,dog,No,night owl,No,Runaway by Kanye West
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,20,Business: Information Systems,,I plan to get a minor in data science. ,53715,38.9416,-119.9772,No,pepperoni,neither,No,early bird,No,For Certain by PartyNextDoor.
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,21,Other (please provide details below).,Information Science,,53715,20.528,-100.8113,Maybe,pepperoni,dog,Yes,no preference,Maybe,De Carolina by Rauw Alejandro
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,21,Other (please provide details below).,"Economics. Doing a certificate in Data Science
+
+ ",N/A,53703,41.3851,2.1734,No,Other,cat,No,night owl,Yes,"unwritten - natasha bedningfield
+
+anyone/ ghost -justin bieber
+
+buzz - niki
+
+ "
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,21,Science: Other,Environmental Science,,53715,37.9838,23.7275,No,pepperoni,dog,Yes,no preference,Maybe,I Had Some Help - Morgan Wallen and Post Malone
+COMP SCI 319:LEC002,LEC002,No,25,Other (please provide details below).,Economics,,53705,30.5928,114.3055,Maybe,pineapple,cat,No,no preference,Yes,路过人间-- Yisa Yu
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,21,Data Science,No,statistics,53703,39.9042,116.4074,Yes,tater tots,cat,No,early bird,Yes,"Ice Ice Baby
+Song by Vanilla Ice"
+COMP SCI 319:LEC002,LEC002,Yes,24,Other (please provide details below).,econ ,,53703,39.9042,116.4074,No,Other,cat,Yes,night owl,Yes,kenye west
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,18,Data Science,,Animal and Veterinary Biosciences,53706,45.8561,9.1166,Yes,none (just cheese),dog,No,night owl,No,Northern Attitude by Noah Kahan
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Economics,Data Science,53703,33.6088,-117.8734,Yes,basil/spinach,dog,Yes,early bird,No,Blondie - Current Joys
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,18,Science: Biology/Life,,,53703,43.7696,11.2558,No,pineapple,cat,Yes,night owl,Maybe,Epitaph-king crimson
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,18,Data Science,,,53706,48.8575,2.3514,Yes,mushroom,cat,No,early bird,No,callaita bad bunny 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,20,Business: Finance,N/A,Information Systems,53703,41.8781,-87.6298,No,pineapple,dog,No,no preference,Maybe,Something Real - Post Malone
+COMP SCI 319:LEC002,LEC001,No,22,Other (please provide details below).,Economics,,53715,60.1,24.53,Maybe,pepperoni,cat,Yes,night owl,Yes,Hotel California
+COMP SCI 319:LEC002,LEC002,Yes,23,Science: Other,,,53703,18,13,No,sausage,dog,No,early bird,No,"Cruel Summer
+
+Taylor Swift"
+COMP SCI 319:LEC002,LEC002,No,24,Other (please provide details below).,economics,,53703,19.8968,-155.5828,No,sausage,cat,No,night owl,Yes,“学不会”- JJ LIN
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53715,-36.8485,174.7633,No,pepperoni,dog,No,no preference,No,Nellie by Dr. Dog
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,20,Science: Other,Information Science,,53715,40.7128,-74.006,No,mushroom,dog,No,night owl,Maybe,Vex Oh- Kaytranada 
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,20,Engineering: Other,,,53711,40.3754,-105.5061,No,pineapple,neither,Yes,no preference,Yes,Useless by Omar Apollo
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,53094,43.4925,-88.543,No,none (just cheese),dog,No,night owl,Yes,Otherside - Red Hot Chili Peppers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,19,Data Science,,,53703,22.53,114.06,Yes,pineapple,neither,No,night owl,Yes,"Sway to My Beat in Cosmos
+
+Chevy/HOYO"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,18,Computer Science,,,,40.7128,-74.006,Maybe,macaroni/pasta,cat,No,no preference,Maybe,Hotel California (version 2004) eagles
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,21,Other (please provide details below).,Supply Chain Management,,53703,39.514,-0.4737,Yes,sausage,cat,No,night owl,Maybe,Phil Collins - Paradise
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,18,Engineering: Other,,,53706,43.103,-88.2375,No,Other,dog,Yes,early bird,Maybe,Blue Notes by Meek Mill
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Computer Science,,,53706,40,-243.6,Yes,sausage,dog,No,night owl,Maybe,The Sound of Silence by Simon & Garfunkel
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Data Science,,econ,53706,3.2028,73.2207,Yes,sausage,cat,No,night owl,Yes,Fair Trade--Drake
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,18,Other (please provide details below).,Economics,,53711,39.0245,-77.5301,No,,neither,No,night owl,No,Perennial Quest: Death
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,18,Other (please provide details below).,Computer Science,Data Science,53706,41.0082,28.9784,Yes,Other,cat,No,early bird,Yes,28 - Zach Bryan 
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Other (please provide details below).,Economics , Data Science,53703,37.6472,-118.9675,Maybe,pepperoni,dog,No,no preference,Yes,Brown Eyed Girl -Van Morrison
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Mechanical,,,53715,45.8876,-123.9622,No,pineapple,dog,No,night owl,Yes,No one like you - Scorpions
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Science: Biology/Life,,,53706,38.9072,-77.0369,No,sausage,cat,Yes,night owl,Yes,The Ballad of Jane Doe by Emily Rohm & Ride the Cyclone World Premiere Cast Recording Ensemble
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,19,Computer Science,,Data Science,53726,25.033,121.5654,Maybe,pineapple,cat,Yes,early bird,Maybe,Video Killed The Radio Star --- The Buggles
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,20,Computer Science,,,53703,42.36,-71.06,Yes,pepperoni,dog,Yes,night owl,Yes,The Groovy Cat - PAWSA
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Science: Other,Psychology/ Data science,data science,53703,36.5552,-121.9233,Yes,mushroom,dog,No,night owl,Yes,Steely Dan - Do it Again
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,20,Computer Science,,,53703,53.271,-9.0627,Maybe,pepperoni,dog,No,night owl,Yes,1979 - The Smashing Pumpkins
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Engineering: Industrial,NA,Possible certificate in data science,53706,55.6,12.56,No,basil/spinach,dog,Yes,early bird,Maybe,the prophecy by taylor swift
+COMP SCI 319:LEC001,LEC001,No,22,Business: Information Systems,,,53719,30.5728,104.0668,Maybe,macaroni/pasta,cat,No,night owl,Yes,ETA (by NewJeans)
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,20,Engineering: Mechanical,,,53703,43.0731,-89.4012,No,sausage,dog,Yes,night owl,No,"I Didn't Know- Skinshape
+
+ 
+
+Definitely a song to play for class."
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,20,Science: Physics,,,53715,41.8781,-87.6298,No,pepperoni,dog,No,night owl,No,Kid cudi
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Mechanical,,As of now i am not sure if i am gonna go for double majors and even if i do i dont know the topics and subjects i am gonna take.,53706,25.3447,83.0219,Maybe,mushroom,dog,No,night owl,Maybe,Avalanche by Christian French
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,20,Computer Science,,Minoring in chemistry,53726,35.4442,139.6381,No,mushroom,neither,No,night owl,No,Parov Stelar - Booty Swing
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,20,Statistics,,,53715,31.299,120.5832,Maybe,none (just cheese),cat,No,night owl,No,Cruel Summer-- Taylor Swift
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,19,Other (please provide details below).,"Economics, BS",,53703,42.33,83,No,pepperoni,cat,No,night owl,Yes,Dancin in the country 
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,18,Computer Science,,,53706,18.519,73.9431,Maybe,pepperoni,dog,No,early bird,Yes,My favourite song is Raputin by Boney M.
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,18,Business: Actuarial,,,53706,37.9838,23.7275,No,pepperoni,dog,Yes,night owl,Yes,I Know You Want Me by Pitbull
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Business: Finance,,,53715,40.6171,-74.0479,No,pineapple,dog,No,night owl,Yes,Sundress by A$AP Rocky
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,21,Statistics,,Data Science,53715,37.6783,126.7313,Yes,sausage,dog,No,early bird,Yes,"Title : Live my life
+
+Artist : Aespa"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,19,Other (please provide details below).,I am currently an Economics major with an intent to receive a Data Science Certificate as well.,,53703,40.7128,-74.006,No,Other,cat,Yes,night owl,No,"One of my favorite songs is ""Creep,"" by Radio Head."
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,18,Engineering: Industrial,,,53715,41.7606,88.3201,No,pepperoni,dog,Yes,night owl,Yes,Flashing Lights - Kanye West 
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Industrial,n/a,n/a,53703,32.7765,-79.9311,Maybe,pepperoni,dog,Yes,night owl,Yes,"But Me - Ty Myers
+
+Somewhere in Brooklyn - Bruno Mars"
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,18,Data Science,,,53706,37.5683,126.9978,Yes,pepperoni,dog,No,night owl,Yes,Valley - Like 1999
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Biomedical,,,53705,37.7462,-122.4143,No,Other,dog,No,night owl,Yes,"Good Luck, Babe! - Chappell Roan"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,21,Computer Science,N/A,N/A,53706,38.907,77.037,No,basil/spinach,cat,Yes,night owl,Yes,Good Time - Collab by Carly Rae Jepsen and Owl City
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,,Engineering: Mechanical,,,53703,40.7128,74.006,Maybe,sausage,dog,Yes,no preference,Maybe,Just the Way You Are by Bruno Mars
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53714,43.0731,-89.4012,No,pepperoni,dog,No,early bird,Maybe,We are Young Fun.
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Mechanical,,,53706,139.65,35.6764,No,pineapple,dog,No,night owl,Yes,The color violet - Tory Lanez
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,19,Business: Finance,,,53703,45.1468,-93.3554,Yes,pepperoni,dog,Yes,night owl,Yes,Lose Yourself by Eminem 
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Data Science,,"Economics
+
+ ",53703,12.9716,77.5946,Yes,none (just cheese),dog,Yes,no preference,Yes,I love you I hate you - Playboycarti
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,18,Computer Science,,Data Science,53715,41.8781,41.8781,Yes,none (just cheese),dog,No,night owl,No,"Udit Narayan (Note this is a famous Indian Bollywood 1990s artist)
+
+if you ever put his songs put them from the movie Dil To Pagal Hai"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Computer Science,,,53706,43.0627,-87.9959,No,macaroni/pasta,neither,Yes,early bird,No,Get Free by Lana Del Ray
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,,Other (please provide details below).,Information Science,,53703,42,-88,No,sausage,cat,No,night owl,Yes,"I Want It That Way, Backstreet Boys"
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,21,Science: Other,Atmospheric and Oceanic Sciences,,53726,43,89,No,pepperoni,dog,Yes,early bird,Yes,"""On, Wisconsin!"" by William T. Purdy"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,20,Engineering: Mechanical,,,53706,38.5196,14.9599,No,pineapple,dog,No,early bird,Maybe,"Jersey Giant - Even Honer, Julia DiGrazia"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,20,Statistics,,,53703,39,116,Maybe,mushroom,dog,No,night owl,Yes,"Mercy, Duffy"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,18,Engineering: Mechanical,,,53706,37.9375,107.8123,No,pepperoni,cat,Yes,night owl,Maybe,"Wishlist, Denzel Curry"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Other (please provide details below).,"economic
+
+ ",data science,53703,41.8719,12.5674,Maybe,sausage,dog,Yes,night owl,Yes,"ed sheeran
+
+ "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,18,Science: Biology/Life,,I'm currently thinking about a certificate or an additional major in data science.,53076,27.9642,-82.4526,Maybe,sausage,dog,No,night owl,Yes,Drive me crazy - Lil Yachty
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,20,Mathematics/AMEP,,,53703,3.1649,101.5902,Maybe,mushroom,cat,Yes,night owl,Yes,Test Drive (From How To Train Your Dragon) - John Powell
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,18,Engineering: Industrial,,,53706,51,-0.13,Maybe,pepperoni,dog,Yes,night owl,Maybe,Poker Face - Lucki
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC001,No,19,Engineering: Mechanical,,,53703,40.4406,-79.9959,No,pepperoni,dog,No,night owl,Maybe,While my guitar gently weeps 
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,20,Computer Science,,,53715,37.7771,-121.9675,Maybe,mushroom,dog,No,night owl,Yes,Cannibal by Mochji
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,21,Other (please provide details below).,Economics,"Political Science, Data Science",53703,3.139,101.6869,Maybe,none (just cheese),cat,Yes,early bird,No,Asareje - Spanish version
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,21,Science: Chemistry,,As well as chemistry I study mathematics and am earning a certificate in data science ,53725,45.4404,12.316,No,pineapple,dog,Yes,night owl,Maybe,Guess by Charli XCX
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Engineering: Mechanical,,,53706,40.7646,-73.9804,No,sausage,dog,Yes,early bird,Yes,Born to Run - Bruce Springsteen
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,18,Business: Finance,,Data Science,53715,46.6863,7.8632,Maybe,pineapple,dog,Yes,early bird,No,Good days by sza
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,,Statistics,,,53703,26.0745,119.2965,Maybe,pineapple,cat,No,early bird,Maybe,Heart orchid goes with you
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,20,Engineering: Industrial,,,53715,-37.807,145.0306,No,pepperoni,cat,Yes,early bird,Maybe,American Nights - Zach Bryan
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53703,11.5967,42.4624,No,pepperoni,dog,No,night owl,Maybe,"Wish you were here by pink floyd
+
+bad bitty by jp"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,0,Science: Biology/Life,,,53705,48.8566,2.3522,No,pineapple,dog,No,night owl,Yes,You Should See Me in a Crown by Billie Eilish
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,18,Science: Biology/Life,,,53706,30,120,Yes,mushroom,cat,Yes,night owl,Yes,"Radio
+
+Lana Del Ray"
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,18,Engineering: Industrial,,,53706,20.6028,-105.2337,No,pepperoni,dog,No,night owl,Yes,Legacy- Matt Maeson
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,19,Engineering: Other,,,53706,47.37,102.2,No,none (just cheese),dog,Yes,early bird,Yes,Scenario by A Tribe Called Quest.
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53715,40.7128,-74.006,No,pepperoni,dog,Yes,night owl,Yes,"What you know, Two Door Cinema Club"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,18,Statistics,,,53706,57.7818,14.1585,Maybe,pepperoni,dog,Yes,no preference,No,"Circle
+
+ 
+
+ "
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Data Science,,,53703,31.2304,121.4737,Yes,none (just cheese),cat,No,no preference,Maybe,In My Own Way by PAx White
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,19,Data Science,,,53703,41.8781,-87.6298,Yes,pepperoni,dog,No,night owl,Yes,Faith by The Weeknd
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,20,Mathematics/AMEP,Mathematics of Data Science,I do not have any secondary majors.,53703,35.6895,139.6917,Maybe,pepperoni,cat,No,early bird,Yes,"""beside you"" from Keshi"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,21,Science: Biology/Life,,,53703,43.0731,-89.4012,No,mushroom,cat,No,night owl,No,Take on Me by a-ha
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,19,Business: Finance,,Data science ,53706,40.7128,-74.006,No,basil/spinach,dog,Yes,no preference,Yes,Dress Code - Mau p
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,21,Data Science,--,Economics,53703,37.8,122.4,Yes,pepperoni,dog,Yes,no preference,No,"If I Ain't Got You
+
+- Alicia Keys"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Mechanical,,,53703,21.3891,39.8579,No,none (just cheese),cat,Yes,night owl,Yes,"I like listening to quran, Al mumminun by yasser al dosari, al haqqah by yousef soqier and by naser al qatmi are also very good surahs"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,20,Data Science,,"data sciences, economics",53703,43.0731,-89.4012,Yes,macaroni/pasta,dog,No,night owl,Yes,"New Romantics 
+
+by Taylor Swift"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,18,Other (please provide details below).,economics,,53706,28.4595,77.0266,Yes,green pepper,dog,No,no preference,Yes,lemon tree by fools garden
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,certificate in manufacturing engineering ,53716,35.9855,-86.7831,No,basil/spinach,dog,No,early bird,Maybe,View Between Villages Noah Kahan
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,18,Data Science,"I haven't decided. Maybe my major is Data Science in the future. However, I'm still exploring.",Maybe not.,53706,,53,Yes,pineapple,dog,Yes,night owl,Yes,My favorite singer is Jay chou. I like all of songs of him
+COMP SCI 319:LEC001,LEC001,Yes,26,Other (please provide details below).,Information Science,-,53711,37.5499,126.9738,No,pineapple,cat,No,early bird,Yes,Jon Bellion - Blu
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Other (please provide details below).,,,53707,64.9631,-19.0208,Maybe,none (just cheese),cat,Yes,night owl,Maybe,double take - Dhruv
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,19,Statistics,,,53703,52.3702,4.8952,Maybe,basil/spinach,dog,No,no preference,Maybe,"Sing About Me, I'm Dying of Thirst - Kendrick Lamar"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,21,Engineering: Mechanical,Mechanical Engineering,,53726,35.6895,139.6917,No,pepperoni,dog,No,early bird,Maybe,Vampire Sundae - Hot Pink Death Machine
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,20,Other (please provide details below).,Economics,Data Science Certificates,53703,40.7831,-73.9713,Maybe,basil/spinach,dog,No,early bird,Yes,seven - jungkook from bts
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,21,Other (please provide details below).,Data Science & Economics ,No secondary majors ,53703,41.8,123.4,Yes,macaroni/pasta,dog,Yes,early bird,Yes,pushing 21
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,19,Engineering: Mechanical,,,53562,40.7128,-73.935,No,Other,neither,No,night owl,Yes,Hooked on a feeling by Blue Swede
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,17,Data Science,,,53715,28.7,77.1,Yes,pepperoni,dog,No,night owl,Yes,Have no favorite songs 
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,20,Other (please provide details below).,Economics,Information Science,53703,31.9522,35.2332,No,pineapple,cat,No,night owl,Maybe,That's okay - DO Kyung Soo
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Data Science,,,53706,,,Yes,sausage,cat,No,no preference,Yes,
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,18,Data Science,,,53706,39.9042,116.4074,Yes,sausage,dog,No,no preference,Yes,"LIKE THAT
+
+BABYMONSTER"
+COMP SCI 319:LEC004,LEC004,Yes,24,Science: Other,economics,,53705,30.1999,107.7324,No,pepperoni,cat,No,night owl,Yes,大海 张雨生
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,20,Computer Science,N/A,N/A,53706,41.3851,2.1734,No,pepperoni,dog,No,no preference,Yes,El Doctorado - Tony Dize
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,18,Data Science,,Spanish,53706,32.7765,-79.9311,Yes,none (just cheese),dog,Yes,night owl,Maybe,Birds of a Feather Billie Eilish
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,20,Other (please provide details below).,Economics,History,53715,44.9142,-89.5512,No,sausage,dog,No,night owl,Yes,Graduate by Third Eye Blind
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,20,Other (please provide details below).,"Although my major can be considered physics, I wanted to specify that my major is Astrophysics. ",,53715,53.2707,-9.0568,No,basil/spinach,cat,No,night owl,Yes,Dreams by the Cranberries
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Science: Other,Environmental Science,N/A,53715,47.0455,8.308,No,pepperoni,cat,Yes,no preference,Yes,"Dang! - Mac Miller, Anderson .Paak"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,18,Engineering: Mechanical,,,53706,43.0722,89.4008,No,pineapple,dog,No,early bird,No,All Your'n by Tyler Childers
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,21,Data Science,,,53703,40.7608,-111.891,Yes,mushroom,cat,No,night owl,Yes,Riot - Hugh Masekela
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,18,Data Science,,Economics,53703,41.3851,2.1734,Yes,pepperoni,cat,Yes,night owl,No,"Slide - Calvin Harris, Frank Ocean, Migos"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,18,Engineering: Industrial,,,53706,35.6895,139.6917,No,sausage,dog,Yes,night owl,No,Vienna by Billy Joel
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,18,Data Science,,,53703,51.5074,-0.1278,Yes,none (just cheese),dog,Yes,night owl,Yes,Pretty Slowly By Benson Boone
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,20,Business: Other,n/a,"data science, computer science, digital studies",53703,40.7831,-73.9713,No,sausage,dog,No,night owl,Maybe,afterglow - ed sheeran
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,21,Science: Chemistry,,,53703,31.299,120.5853,No,pineapple,cat,No,no preference,No,We Own The Night -- Matthew Morrison
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,,Engineering: Mechanical,,,53711,19.8968,-155.5828,No,pineapple,dog,Yes,no preference,Maybe,Broken Halos by For King and Country
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,20,Data Science,,Economics,53703,52.2297,21.0122,Yes,pepperoni,dog,No,night owl,Yes,Bad Habit by Steve Lacy
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53706,51.5074,-0.1278,No,pepperoni,dog,Yes,night owl,Yes,"Life is a Highway, Rascal Flatts"
+COMP SCI 319:LEC002,LEC002,No,27,Engineering: Other,,,53705,55.9511,-3.187,No,pineapple,cat,No,no preference,Maybe,"Circles, Post Malone
+
+Sounds of Someday, Radio Company
+
+Mind Over Matter, Young the Giant
+
+Why'd you only call me when you're high, Arctic Monkeys"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Industrial,,,53706,41.8781,-87.6298,No,sausage,dog,Yes,early bird,No,
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,21,Data Science,,Economics,53703,31.23,121.47,Yes,green pepper,cat,No,night owl,Yes,I prefer not to share. 
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,19,Statistics,N/A,Cartography and GIS,53715,38.7074,-9.1381,Maybe,sausage,dog,No,night owl,Maybe,"Mr. Forgettable, David Kushner "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,17,Data Science,,,53706,25.033,121.5654,Yes,pepperoni,cat,No,no preference,Yes,"Miss Americana & the Heartbreak Prince, Taylor Swift"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,20,Other (please provide details below).,Economics, Statistics,53703,22.2771,114.1635,Maybe,sausage,cat,No,night owl,Yes,Hometown Glory
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,19,Other (please provide details below).,"I am undecided, but planning on either data science, economics, or something related to finance in the business school.",,53703,43.7696,11.2558,Maybe,sausage,dog,No,night owl,Maybe,Thnks Fr Th Mmrs by Fall Out Boy
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,19,Business: Finance,,,53715,41.76,-87.63,Maybe,sausage,dog,No,night owl,Yes,"""Party Rock Anthem"" by LMFAO"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Engineering: Mechanical,,,54307,44.5133,-88.0133,No,basil/spinach,dog,No,night owl,Yes,Back on 75 - Jungle
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,24,Business: Other,,,53715,27,42,No,pineapple,dog,No,night owl,Maybe,Bad boy
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Industrial,N/A,N/A,53706,31.9454,35.9284,No,pineapple,dog,Yes,early bird,Yes,smells like teen spirit by Nirvana
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,20,Engineering: Industrial,,,53711,42.3601,-71.0589,Maybe,sausage,dog,No,night owl,Yes,Eyes closed Ed Sheeran
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Engineering: Mechanical,,computer science,53715,32,118,No,pepperoni,cat,Yes,early bird,Yes,betty taylor swift
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,20,Business: Finance,,,53706,41,-87,Maybe,pepperoni,dog,No,night owl,Yes,"Wish You Were Here, Pink Floyd"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,20,Other (please provide details below).,Rehab Psychology,data science,53703,28.2282,112.9388,Maybe,pineapple,dog,No,night owl,Yes,Love story-Taylor Swift
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,19,Science: Other,Economics.,,53703,32.73,-117.16,No,pepperoni,cat,No,night owl,Yes,Kendrick Lamar: Pride
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,18,Computer Science,,,53706,41.8336,-87.8968,Maybe,none (just cheese),cat,No,night owl,Yes,Creep by Radiohead
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,21,Computer Science,,,53705,31.2304,121.4737,Maybe,pepperoni,dog,Yes,night owl,Maybe,n/a
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,19,Computer Science,,,53706,44.6488,-63.5752,No,sausage,dog,Yes,night owl,Yes,Middle of the Night - loveless
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Business: Actuarial,,"Date Science, Accounting ",53706,42.9874,-78.7915,Yes,mushroom,cat,No,night owl,Maybe,"See You Again, Song by Wiz Khalifa."
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC003,No,21,Business: Other,"I study Economics, BA","I also study Russian, BA",53703,29.9511,-90.0715,Maybe,sausage,dog,No,night owl,Yes,House of the Rising Sun - The Animals
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,19,Business: Other,,,53715,36.1024,-115.1746,Maybe,pepperoni,dog,No,night owl,Yes,More Than a Woman- Bee Gees
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,20,Data Science,,,53703,44.9778,-93.265,Yes,Other,neither,No,early bird,Maybe,Aqua- Barbie Girl
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,19,Engineering: Industrial,,French,53715,10.3174,-84.824,Maybe,pepperoni,dog,Yes,night owl,Yes,Rich Girl by Hall And Oates
+COMP SCI 319:LEC004,LEC004,No,22,Science: Physics,,Physics,53703,22.5431,114.0579,No,sausage,neither,No,no preference,Yes,After All ~Tsuzuru Omoi~ by Rena Uehara
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,20,Business: Finance,,Business: Information Systems,53589,41.013,28.9748,No,basil/spinach,neither,Yes,early bird,Yes,Dusk Till Dawn by Sia and Zayn
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Mechanical,,,53706,41.9028,12.4964,Maybe,mushroom,dog,No,night owl,Yes,Badfish - Sublime
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,21,Other (please provide details below).,Economics,N/A,53703,30.2741,120.1551,Maybe,sausage,dog,Yes,night owl,Yes,Wo Men De Ge - Wang Leehom
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Mechanical,,,,53706,-86.8466,No,sausage,dog,Yes,night owl,No,Springsteen - Eric Church
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,22,Statistics,,"Math, environmental studies",53703,31,104,Maybe,mushroom,dog,No,early bird,No,人间乐 - 国家宝藏
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53703,44.3588,-89.0849,No,pepperoni,cat,No,early bird,Yes,"You broke my heart 
+
+Drake"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,20,Business: Information Systems,,,53703,42.6094,-90.4307,Maybe,pepperoni,dog,Yes,early bird,Maybe,Feel it - D4vd
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,20,Business: Finance,,Real Estate,53703,43.0556,-88.1272,No,sausage,dog,No,night owl,Yes,Black Magic Woman - Santana
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53703,37.9121,-122.5571,No,pepperoni,dog,No,night owl,Maybe,Suburban Legends - Taylor Swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,19,Business: Other,,,53703,40.639,-73.96,Maybe,none (just cheese),dog,No,no preference,Yes,"Mirror, Kendrick Lamar"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,18,Data Science,,,53703,40.7306,-73.9352,Yes,pepperoni,dog,No,no preference,Yes,jump around house of pain
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Mechanical,,,53711,35.6895,114.6844,No,sausage,cat,No,night owl,Yes,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,18,Engineering: Biomedical,,,53706,8.7335,76.7255,No,pineapple,dog,No,no preference,Yes,Currently listening on repeat to Rock with You by MJ.
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Data Science,N/A,Economics,53703,47.6062,-122.3321,Yes,sausage,dog,Yes,early bird,No,"Feeling good, Michael Buble"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,18,Data Science,None,None ,53706,37.9838,23.7275,Yes,none (just cheese),dog,No,night owl,No,Good Days by SZA 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Engineering: Mechanical,,,53711,45.4669,-89.7134,No,green pepper,dog,No,no preference,Yes,Higher by Creed
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,19,Data Science,,,53703,46.9475,7.4474,Yes,pepperoni,dog,Yes,early bird,Yes,Thunder struck-AC/DC
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,17,Data Science,na,"molec. biology/finance
+
+or biomedical engineer",53706,28.7041,77.1025,Yes,basil/spinach,dog,No,early bird,Yes,Higher by tems
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Mathematics/AMEP,,Data Science,53706,45.5374,-100.4338,Yes,sausage,cat,No,night owl,Maybe,White Horse by Chris Stapleton
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Business: Information Systems,,Business: Finance,91325,33.6595,117.9988,No,pepperoni,dog,Yes,early bird,Yes,Aja by Steely Dan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,19,Other (please provide details below).,Data Science,Business: Actuarial,53706,41.8781,-87.6298,Yes,pepperoni,dog,No,no preference,Yes,3 nights by Dominic Fike
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,19,Data Science,,,53715,34.681,112.46,Yes,pineapple,cat,No,no preference,Maybe,"Eason Chen
+
+King of Singing"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,18,Engineering: Mechanical,,,53706,44.9357,-93.5119,No,pepperoni,dog,No,night owl,Yes,New Faces V2 - Mac Miller
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,18,Business: Finance,n/a,Data Science,53706,47.6061,122.3328,Yes,pepperoni,dog,Yes,night owl,Yes,Feel Like That - Stick Figure featuring Sublime
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Industrial,,,53715,41.8781,-87.6298,No,mushroom,dog,No,no preference,Yes,Any classic rock
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53715,34.8822,-120.4123,No,pepperoni,dog,No,night owl,Yes,
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,19,Computer Science,,,53715,48.8566,2.3522,Maybe,mushroom,dog,Yes,night owl,Yes,Someone New - Hozier
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53703,27.8974,-82.8462,No,pepperoni,dog,No,night owl,Yes,Piano Man - Billy Joel
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53703,42.981,-87.8997,No,pepperoni,neither,Yes,no preference,Yes,Tie Up-Zac Brown Band
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,21,Business: Information Systems,,,53703,41.3962,2.1798,No,pepperoni,dog,Yes,no preference,Yes,"Everybody wants to rule the world, Tears For Fears "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,19,Engineering: Biomedical,N/A,N/A,53714,7.9613,-11.7224,No,sausage,dog,Yes,night owl,Maybe,Virginia Beach-Drake
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,19,Science: Physics,,Astronomy-Physics,53703,50.0997,8.7701,No,Other,dog,Yes,early bird,No,"Is there still a light on by Adam Melchor, or There is a light and it never goes out by the Smiths"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,20,Engineering: Mechanical,,,53715,41.88,-87.63,No,sausage,cat,Yes,night owl,Yes,I really like Big Dawgs right now by Hanumankind and Kalmi
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,18,Data Science,,,53706,59.9139,10.7522,Yes,sausage,dog,No,early bird,Yes,The great escape - BOYS LIKE GIRLS
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,18,Mathematics/AMEP,,"Data Science, Computer Science",53706,-1.2921,36.8219,Yes,none (just cheese),cat,No,night owl,Maybe,Touchy Feely Fool or Three 'O Clock Things by AJR 
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Data Science,,,53703,33.5779,-101.8552,Yes,Other,dog,No,night owl,Yes,The Devil Went Down to Georgia by The Charlie Daniels Band
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,19,Other (please provide details below).,Economics,Pre-Engineering,53703,39.7392,-104.9903,Maybe,none (just cheese),dog,Yes,night owl,Yes,"From the Start, Good Kid"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,21,Business: Other,,,53703,22.3964,114.1095,Yes,mushroom,cat,No,night owl,Yes,Red Wine Supernova by Chappell Roan.
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,21,Other (please provide details below).,Economics,,53703,31.2244,121.4692,Maybe,pepperoni,cat,No,night owl,Maybe,Self Love-Metro Boomin/Coi Leray
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Biomedical,,,53706,10.4806,,No,mushroom,neither,Yes,early bird,Maybe,Mercy Mercy By Marvi Gaye
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,19,Other (please provide details below).,Economics,,53704,26.0743,119.2965,No,pineapple,cat,No,night owl,Yes,My favorite song is Can't Take My Eyes off You by Frankie Valli!
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,20,Data Science,,,53703,22.5431,114.0579,Yes,sausage,dog,No,night owl,Maybe,one last kiss
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Science: Physics,,Mathematics,53715,48.8566,2.3522,No,pepperoni,dog,No,night owl,Yes,Syncopate by Michelle
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,18,Data Science,,,53715,32.0853,34.7818,Yes,none (just cheese),cat,No,night owl,Maybe,Kiss of Life - Sade
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,,Engineering: Mechanical,,,53706,42.053,-70.1864,No,none (just cheese),dog,No,night owl,Yes,Human by Killers
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,22,Data Science,DS,NA,53703,39.3411,-122.8359,Yes,mushroom,dog,No,early bird,Maybe,Weeknd
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,20,Statistics,no,data science,53718,30.9,120.5,Yes,none (just cheese),dog,No,no preference,Yes,whatever from Charlie Puth is great for me.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,21,Business: Information Systems,N/A,N/A,53703,19.4326,-99.1332,Maybe,sausage,dog,Yes,early bird,Maybe,The Heart Part 5 - Kendrick Lamar.
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Mechanical,,,53706,42.4247,18.7712,No,sausage,dog,No,no preference,Yes,All The Small Things - Blink 182
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC002,Yes,19,Engineering: Industrial,,,53703,40.715,-87.9785,No,sausage,dog,No,night owl,Yes,Where you Are - Moana
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,18,Science: Physics,,,53706,43.0828,-89.3762,No,pepperoni,dog,Yes,no preference,Yes,Nights by Frank Ocean
+COMP SCI 319:LEC003,LEC003,Yes,38,Science: Biology/Life,,,53705,32.7555,-98.9026,No,Other,cat,No,night owl,Maybe,pompeii by bastille
+COMP SCI 319:LEC002,LEC002,Yes,24,Science: Other,,,53704,30,104,No,pineapple,dog,No,night owl,Maybe,"Isabellae
+
+Higher Brothers"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,18,Statistics,,,53703,30.2725,-87.6874,Maybe,sausage,dog,Yes,night owl,Maybe,No Sleep Till Brooklyn by Beastie Boys
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,20,Engineering: Mechanical,,,53703,41.2308,-80.7226,No,pepperoni,dog,No,night owl,Yes,Holy Forever - Chris Tomlin
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,20,Business: Information Systems,N/A,N/A,53703,46.6746,-94.1087,No,pepperoni,dog,Yes,early bird,No,Fast Car by Luke Combs
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Engineering: Mechanical,,,53706,33.8359,-118.3406,Maybe,sausage,cat,No,night owl,Yes,Cry - Cigarettes After Sex
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC003,Yes,19,Engineering: Industrial,,,53703,42.3601,-71.0589,No,green pepper,dog,Yes,night owl,Maybe,Electric Feel - MGMT
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,21,Statistics,,,53575,18.5575,-68.372,Maybe,sausage,dog,No,night owl,Maybe,"When We Were Young, Adele"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,22,Engineering: Mechanical,,,53703,44.5417,-88.1609,No,pepperoni,dog,No,night owl,Yes,From Eden by Hozier
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,19,Data Science,,"mathematics, clarinet performance",53703,45.764,4.8357,Yes,pineapple,cat,No,night owl,Yes,Little Lies by Fleetwood Mac
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,19,Science: Physics,,,53715,36.0664,-75.6935,No,none (just cheese),dog,No,night owl,Yes,"Damage Gets Done (feat. Brandi Carlile), Hozier and Brandi Carlile"
+COMP SCI 319:LEC003,LEC003,Yes,23,Business: Other,human resource management,,53715,31.299,120.5853,Yes,pepperoni,cat,No,night owl,Yes,"The End of Love, Wubai & China Blue"
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,18,Science: Biology/Life,,,53706,43.0731,-89.4012,Maybe,none (just cheese),cat,No,no preference,Maybe,Head over Heels by ABBA
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,19,Engineering: Biomedical,,,53726,45.5219,-122.6832,No,Other,cat,No,night owl,Yes,Someday by The Strokes
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Statistics,,,53715,42.7,-87.8,Yes,pepperoni,cat,No,early bird,Yes,Ghost town by kanye west
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,20,Statistics,,,53703,31.8206,117.2781,Maybe,mushroom,dog,Yes,no preference,Maybe,"Title: Black eye 
+
+Artist: VERNON"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,19,Science: Other,genetics,data science,53715,1.3521,103.8198,Maybe,tater tots,cat,No,night owl,Yes,Goosebumps by Travis Scott
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,18,Other (please provide details below).,"Currently undecided but considering majors like Electrical, Mechanical Engineering and Computer Science. Mainly just interested in robotics related topics.",,53706,43.0389,-87.9065,No,mushroom,cat,No,no preference,Yes,"From the Start, Laufey"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Data Science,,math (pure),53706,37.9838,23.7275,Yes,basil/spinach,cat,Yes,no preference,Yes,Thinking Bout You- Frank Ocean
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,20,Mathematics/AMEP,,,53715,43,89,No,sausage,cat,Yes,early bird,Maybe,"When the sun hits, slowdive"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,19,Other (please provide details below).,Currently my major is Environmental Science but I am on track to transfer into Mechanical Engineering,,53703,52.3702,4.8952,No,green pepper,dog,No,night owl,Yes,Song to Woody by Bob Dylan
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Industrial,,,53715,20.4004,-87.3215,No,sausage,dog,Yes,night owl,Yes,Greedy- Tate McRae
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,18,Other (please provide details below).,I plan to major in kinesiology with a minor in data science. ,,53707,43.0389,-87.9065,Yes,sausage,dog,No,night owl,Yes,Riptide by Vance Joy
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,20,Data Science,,Biochemistry,53715,43.0731,-89.4012,Yes,pepperoni,dog,Yes,early bird,No,classical music.
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,20,Other (please provide details below).,Economics,No,53703,38,77,Maybe,tater tots,neither,Yes,early bird,No,My Love Westlife
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,sausage,cat,No,night owl,Yes,Counting Stars by One Republic
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,18,Computer Science,,Data Science,53706,-27.4701,153.026,Yes,basil/spinach,cat,Yes,early bird,No,Us Without Me - Grentperez
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,19,Science: Other,,,53706,47.8864,106.9057,No,pepperoni,cat,No,no preference,Maybe,Hyukoh-Comes and Goes
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Data Science,,,53715,31.299,120.5853,Maybe,mushroom,cat,No,no preference,Yes,"one last kiss — utada hikaru
+
+暗涌 — Faye Wang 
+
+counting starts — OneRepublic "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,18,Computer Science,,I'm planning on doing a double major with my second major being data science. ,53706,40.6782,-73.95,Yes,none (just cheese),neither,No,night owl,Maybe,"Title: Time
+Artist: NF"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Engineering: Mechanical,,,53715,44.1656,-70.9387,No,pepperoni,dog,Yes,night owl,Yes,Get By- Jelly Roll
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,20,Data Science,,,53703,37.9838,23.7275,Yes,sausage,cat,Yes,night owl,Yes,Touch Me - Rui Da Silva
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,18,Science: Physics,,,53706,22.0687,-159.4977,No,sausage,cat,No,night owl,No,"""Sweet Disposition"" by The Temper Trap"
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,17,Data Science,,,53706,33.5427,-117.7854,Yes,mushroom,cat,No,night owl,Yes,A Bar Song (Tipsy) - Shaboozey
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,18,Engineering: Mechanical,,,53706,44.656,-93.2428,No,mushroom,dog,No,night owl,Yes,Villuminati by J Cole
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,20,Other (please provide details below).,Economics,Atmospheric and Oceanic Sciences,53703,40.7128,-74.006,No,pepperoni,dog,Yes,night owl,Yes,Passionfruit - Drake
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,18,Engineering: Other,,,53562,53.5511,9.9937,Maybe,basil/spinach,cat,Yes,early bird,Yes,Just Like Heaven by The Cure
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,20,Engineering: Industrial,,,53703,42.3601,-71.0589,No,sausage,dog,Yes,no preference,Yes,Innerbloom by Rufus du Sol
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Economics,Data Science,53715,34.6937,135.5022,Yes,pepperoni,dog,No,no preference,Yes,yellow -- coldplay
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,20,Business: Information Systems,,,53703,40.7128,-74.006,No,sausage,cat,No,night owl,Yes,Diva - Don Toliver
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,18,Statistics,,,53706,34.0522,-118.2437,No,none (just cheese),dog,No,no preference,Yes,Bad Medicine - Bon Jovi
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,20,Other (please provide details below).,Economics B.S (minor in data science),,,37.7749,,Maybe,sausage,dog,Yes,night owl,Yes,"""Where the wild things are"" - Luke Combs "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,19,Engineering: Mechanical,,,53706,44.2619,-88.4154,No,pepperoni,dog,No,no preference,No,Cowboys From Hell - Pantera (This is some of their not so intense stuff)
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,20,Statistics,,,53703,31.2304,121.4737,No,none (just cheese),neither,No,night owl,No,"What a difference a day makes
+
+Diana Ross"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,18,Data Science,,,53706,41.4993,-81.6944,Yes,pepperoni,dog,No,night owl,No,Your Love - The Outfield
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Engineering: Mechanical,,,53714,43.0731,-89.4012,No,pepperoni,neither,No,night owl,Yes,"""I'M ON"" by Offset"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,22,Mathematics/AMEP,,Economics with Math Emphasis,53715,43.77,11.2577,No,sausage,dog,Yes,night owl,Maybe,The Thief in Marrakesh by Arc De Soleil
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Mechanical,,,1748,42.3601,71.0589,Maybe,none (just cheese),dog,Yes,early bird,Yes,fine Noah Kahan 
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,20,Data Science,DATA SCIENCE,Economic certificates,53715,34.0522,-118.2437,Yes,pepperoni,neither,Yes,early bird,Maybe,"Frank Ocean:: All his songs in the albums :""BLOND, CHANNEL ORANGE and Nostalgia/Ultra
+
+(My most favorite is BLOND)"
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,19,Data Science,,,53715,35.0116,135.768,Yes,none (just cheese),dog,No,early bird,Yes,Breakin' Dishes by Rihanna
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,18,Data Science,,,53706,42.3601,-71.0589,Yes,basil/spinach,dog,No,no preference,Yes,Teams by Lorde
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,21,Other (please provide details below).,"Global Health, Psychology, and Legal Studies ",Certificates in Data Science and Criminal Justice,53703,38.7223,-9.1393,No,pepperoni,dog,No,night owl,Yes,Stubborn Love by the Lumineers
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,18,Computer Science,-,Data Science,53715,25.2048,55.2708,Yes,none (just cheese),dog,Yes,no preference,Maybe,Look Back At It - A Boogie Wit da Hoodie
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,22,Other (please provide details below).,Economics,Statistics,53711,22.1987,113.5439,No,pineapple,dog,No,night owl,Yes,Love Yourself---Justin Bieber
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,19,Engineering: Industrial,,,53703,43.0389,-87.9065,Maybe,none (just cheese),dog,Yes,early bird,Maybe,"Fantasy -Earth, Wind, & Fire"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,22,Engineering: Other,Material Sciences and Engineering,n/a,53711,32.7157,-117.1611,No,sausage,dog,No,early bird,Maybe,Paradise - Lil Uzi Vert
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC004,Yes,19,Engineering: Industrial,,,53706,40.7128,-74.006,No,pepperoni,dog,Yes,early bird,Yes,Better Together by Jack Johnson
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,18,Engineering: Industrial,,,53706,44.3876,-68.2043,No,pepperoni,dog,No,early bird,Yes,Black - Pearl Jam
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,53711,36.2529,-121.7874,Maybe,pepperoni,cat,No,night owl,Maybe,misses - Dominic Fike
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,21,Computer Science,,,53715,45.4005,-91.8509,No,pepperoni,dog,No,night owl,Maybe,20 Something - SZA
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Mechanical,,,53711,43.725,-87.7159,No,macaroni/pasta,dog,No,no preference,Yes,"Yellow Letterbed, Pearl Jam "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,18,Business: Finance,,Data Science,53703,40.71,-740059,Yes,pepperoni,dog,No,night owl,No,505 by Arctic Monkeys
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Industrial,,,53706,44.5133,-88.0133,No,basil/spinach,neither,No,no preference,Yes,Loose by Daniel Caesar
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,21,Business: Actuarial,,"Marketing, Risk Management and Insurance ",53715,52.3702,4.8952,No,pepperoni,cat,No,night owl,Yes,Vampire (Olivia Rodrigo)
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC001,No,20,Data Science,,,53715,36.107,-112.113,Yes,pepperoni,cat,Yes,early bird,Maybe,High School in Jakarta by Niki Zenfaya
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,21,Business: Other,Operations & Technology Management,,53715,43.0731,-89.4012,No,sausage,cat,Yes,night owl,Maybe,Satellite by Harry Styles.
+COMP SCI 319:LEC004,LEC004,Yes,23,Business: Finance,,,53705,39.9042,116.4074,Maybe,pepperoni,dog,No,night owl,Yes,"New Rules
+
+DuaLipa"
+COMP SCI 319:LEC003,LEC003,Yes,26,Engineering: Other,,,53705,78.2254,15.6259,No,pepperoni,dog,No,night owl,Maybe,I Love You by David Tao
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,19,Data Science,,,53703,40.2204,-74.0118,Yes,pepperoni,dog,No,early bird,Yes,Stolen Dance by Milky Chance
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,20,Science: Chemistry,,,53706,41.8781,-87.6298,Maybe,mushroom,cat,No,night owl,Yes,Type Shit - Future and Metro Boomin
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,18,Languages,,,53706,40,-105.28,No,pineapple,cat,No,early bird,Yes,Born to the Morning - The Decemberists
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Computer Science,,,53715,48.8566,2.3522,No,pepperoni,dog,Yes,no preference,No,Hotel by Claire Rosinkranz
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Data Science,,,53715,38.823,-77.0325,Yes,pepperoni,cat,No,no preference,Yes,Rockstar - Nickelback
+COMP SCI 319:LEC003,LEC003,Yes,28,Science: Other,,,53705,42.2594,-72.5754,No,mushroom,dog,Yes,early bird,Yes,Two Princes- Spin Doctors
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,20,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53703,-33.9249,18.4241,No,mushroom,dog,Yes,no preference,Yes,Find a Way - A Tribe Called Quest
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,20,Data Science,N/A,Economics ,53703,32.7157,-117.1611,Yes,pepperoni,dog,Yes,night owl,Maybe,Brown Eyed Girl - Van Morrison
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Engineering: Mechanical,,,53726,41.8781,-87.6298,No,mushroom,dog,No,early bird,No,"Hot Stuff, Donna Summer"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,18,Data Science,,economics,53703,32.0603,118.7969,Yes,pepperoni,dog,No,no preference,Yes,Morden Loneliness by Lauv
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,20,Business: Finance,,Marketing,53715,44.9778,-93.265,No,Other,dog,Yes,no preference,Maybe,Dancing in the Dark by Bruce Springsteen
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,21,Other (please provide details below).,Economics,,53703,28.5383,-81.3792,No,pepperoni,dog,Yes,early bird,Yes,"Everybody Wants to Rule the World
+
+Tears for Fears"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,20,Data Science,N/A,Statistics,53715,44.0747,-71.1638,Yes,sausage,dog,No,night owl,Yes,Linger - the Cranberries
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,17,Business: Other,,,53706,41.114,-73.4088,Yes,pepperoni,neither,Yes,no preference,Yes,Mad Man Moon - Genesis
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,18,Engineering: Industrial,,,53703,45.4343,12.3388,Maybe,pineapple,dog,No,night owl,Maybe,"What is Love -7"" Mix By: Haddaway"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,18,Engineering: Mechanical,,,53715,40.4168,-3.7038,No,sausage,dog,Yes,night owl,No,leavemealone by Fred Again
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Science: Physics,,,53706,40.7128,-74.006,No,green pepper,cat,No,no preference,Yes,Lovesick -Laufey
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,22,Computer Science,,,53715,40.7128,-74.006,No,pepperoni,cat,Yes,early bird,Maybe,"Please, Please, Please by Sabrina Carpenter"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,22,Data Science,,,53703,47.4979,19.0402,Yes,pepperoni,dog,Yes,early bird,No,BSW -Mokambo Gang
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,18,Engineering: Mechanical,,,53706,36.0853,140.2013,No,basil/spinach,cat,Yes,early bird,No,Fluorescent Adolescent - Arctic Monkeys
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,19,Science: Chemistry,,Data Science,53703,32.052,118.778,Yes,mushroom,cat,No,early bird,Yes,"Sabrina Carpenter, taste"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Computer Science,,,53706,35.6895,139.6917,Maybe,none (just cheese),dog,Yes,night owl,Yes,Hacker by Death Grips
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Industrial,,,54022,45.0931,-88.0339,No,pepperoni,cat,No,night owl,Yes,"How You Remind Me, Nickelback"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,23,Engineering: Mechanical,,,53726,51.2094,3.2252,No,pepperoni,dog,No,early bird,Yes,Love never felt so good-Michael Jackson
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53706,14.5586,-90.7295,No,pepperoni,cat,Yes,night owl,Maybe,Black Smoke Rising by Greta Van Fleet
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,20,Data Science,c,c,53703,32.9328,72.863,Yes,basil/spinach,neither,Yes,early bird,Maybe,"Kya Yahi Pyaar Hai
+
+Kishore Kumar, Asha Bhosle"
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53703,22.28,114.16,No,sausage,cat,No,no preference,Maybe,"Cello Sonata No. 1 in E minor, Op. 38, Johannes Brahms"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Engineering: Mechanical,,,53726,41.8781,-87.6298,No,sausage,cat,Yes,no preference,No,"Jesus Walks, by Kanye West"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Engineering: Mechanical,,,53703,40,105,No,pepperoni,dog,Yes,early bird,Yes,"Mr. red white and blue 
+
+by: Cofey Anderson"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,20,Other (please provide details below).,Economics ,Information Science ,53703,411451248,10039532368,No,pineapple,cat,Yes,night owl,Yes,JAUH by Aziz Harun
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,24,Data Science,,,53703,37.5665,126.978,Yes,pepperoni,cat,Yes,early bird,No,You Are Not Alone - Michael Jackson
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,19,Other (please provide details below).,Consumer Behavior and Marketplace Study,N/A,53703,35.3019,107.0285,Yes,pepperoni,cat,No,early bird,Maybe,Exile by Taylor Swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,19,Engineering: Mechanical,,,53715,44.1067,-93.9058,No,pepperoni,cat,Yes,early bird,Maybe,Right now - van halen
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC002,Yes,18,Other (please provide details below).,Political Science,Data Science,53706,25.0117,121.4659,Yes,basil/spinach,neither,No,night owl,Yes,"Lazy Afternoon, Irene Kral "
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,22,Engineering: Biomedical,,Spanish,53726,52.0598,-9.5069,No,pineapple,dog,Yes,no preference,No,Otro atardecer by Bad Bunny
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,20,Computer Science,,,53703,40.3606,74.6644,No,none (just cheese),cat,No,night owl,Yes,Safe - Young Thug
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,18,Data Science,,Possibly communications,53706,44.7524,-93.2006,Yes,sausage,cat,No,night owl,Maybe,Somewhere Only We Know - Keane
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,23,Engineering: Other,Material Science & Engineering,No,53715,37.5665,126.978,No,pepperoni,dog,No,early bird,Maybe,Parachute - John K
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,19,Data Science,I am double majoring in data science and political science ,,53703,40.7128,-74.006,Yes,none (just cheese),dog,Yes,night owl,No,Northern Attitude by Noah Kahn & Hozier 
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,19,Statistics,,,53703,21.3222,-157.8151,No,pepperoni,cat,No,night owl,Yes,As Stevie Wonder
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,18,Data Science,,,53706,32.0337,119.2676,Yes,Other,cat,No,night owl,Maybe,<Wriggle>  Cosmo Sheldrake
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,19,Other (please provide details below).,Finance & Math.,no,53715,42.3601,-71.0589,Maybe,pineapple,cat,Yes,early bird,No,Someone you loved by Lewis Capaldi.
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,20,Business: Finance,,Information Systems,53715,37.7749,-122.4194,No,Other,cat,No,night owl,Yes,Saving up - Dom Dolla
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,18,Data Science,,Cartography/GIS,53051,-33.8688,151.2093,Yes,sausage,dog,No,night owl,Yes,"Take Me Home, Country Roads by John Denver"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,18,Data Science,,,53706,13.4915,144.7905,Maybe,pepperoni,dog,No,no preference,Yes,"California Gurls by Katy Perry, Snoop Dogg"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,19,Business: Information Systems,N/A,N/A,53703,40.7128,-74.006,Maybe,sausage,dog,No,night owl,Maybe,Vienna by Billy Joel
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,18,Mathematics/AMEP,,,53715,40.7128,-74.006,Maybe,sausage,dog,No,no preference,Yes,Beg for you- Charlie xcx
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,19,Business: Information Systems,N/A,N/A,53703,,-74.006,Maybe,sausage,dog,No,night owl,Maybe,Vienna by Billy Joel
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Statistics,,Computer Science,53562,40.4168,-3.7038,Maybe,macaroni/pasta,dog,No,night owl,Yes,My Life - Erykah Badu
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,21,Data Science,,"Chinese, economics",53703,22.6438,120.254,Yes,pepperoni,dog,No,night owl,Yes,"banana pancakes, jack johnson"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,17,Other (please provide details below).,"I am currently undecided, but I'm considering data science and psychology as potential majors in the future.",,53706,43.073,-89.401,Maybe,pepperoni,dog,Yes,no preference,Yes,"""The Chain"" by Fleetwood Mac"
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,18,Data Science,n/a,n/a,53706,41.261,-70.0736,Yes,none (just cheese),dog,No,night owl,Maybe,Brandy (You're a fine girl) by Looking Glass
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,18,Science: Biology/Life,,,53706,34.6937,135.5022,Yes,pepperoni,dog,No,night owl,No,Machi No Dorufin by Kingo Hamada
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,19,Data Science,,,53716,43.207,-71.5378,Yes,Other,dog,No,night owl,Yes,"A Hundred and Sixty Acres, Marty Robbins"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,34.8697,-111.7609,No,green pepper,cat,No,night owl,Yes,I Lived - OneRepublic
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,18,Computer Science,n/a,n/a,53706,43.0722,89.4008,No,sausage,neither,Yes,night owl,Yes,Earth by ClownCore
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,20,Other (please provide details below).,Psychology,Legal studies,53726,42.55,-83.39,No,basil/spinach,dog,Yes,night owl,No,"Turn my Swag On, Soulja Boy"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53703,42.3601,-71.0589,No,macaroni/pasta,dog,Yes,no preference,No,Animal Spirits by Vulfpeck
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,19,Other (please provide details below).,Economics,,53703,47.6062,-122.3321,Maybe,pepperoni,dog,No,night owl,Yes,Tondo - Disclosure
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,20,Business: Other,Economics,Political Science,55056,45.4808,-92.8929,Maybe,none (just cheese),dog,Yes,no preference,Yes,"Burn, Burn, Burn, 
+
+-Zach Bryan"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,20,Science: Physics,,,53715,43.2465,-89.344,Maybe,mushroom,cat,Yes,night owl,Maybe,System of a Down - B.Y.O.B.
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,20,Data Science,N/A,economics,53726,37.6662,120.9605,Yes,none (just cheese),dog,No,night owl,Yes,sleep while I drive - Quinn xcii
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,20,Business: Actuarial,,,53726,39.9042,116.4074,Maybe,sausage,cat,No,night owl,Yes,Dynamite- BTS
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Engineering: Biomedical,,,53706,41.8781,87.6298,Maybe,basil/spinach,cat,Yes,night owl,No,Nirvana by INNA
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,20,Statistics,,education,53715,31.2304,121.4737,Maybe,mushroom,cat,No,night owl,Yes,Baby by Justin Bieber
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC002,No,19,Data Science,,,53703,32.7157,-117.1611,Yes,pepperoni,dog,No,night owl,Yes,heart to heart by Mac Demarco
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,20,Engineering: Mechanical,,,53703,43.0747,-89.3842,No,pineapple,dog,Yes,night owl,Yes,MESSEY- Tommy Richman
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,20,Business: Finance,,,53715,37.5665,126.978,Maybe,sausage,dog,Yes,night owl,Yes,Torey Lanez - Pink Dolphin Sunset
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,18,Data Science,,,53706,45.2806,-111.3575,Yes,pepperoni,dog,Yes,no preference,Yes,Sarah's Place By: Zach Bryan 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,No,19,Engineering: Industrial,,,53706,36.5525,-121.9244,Yes,basil/spinach,dog,No,early bird,Yes,Five by Fai Laci
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Other (please provide details below).,"Think Econ, but very unsure as of right now.",,53703,37.9374,-107.8118,Maybe,basil/spinach,cat,Yes,early bird,Yes,Crash Into Me by Dave Matthews
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,18,Data Science,,,53706,43.7696,11.2558,Yes,mushroom,dog,No,night owl,Yes,Everybody Wants to Rule the World by Tears for Fears
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,18,Other (please provide details below).,Communications,,53706,42.3611,71.0589,No,Other,dog,No,night owl,Yes,American Girl by Tom Petty & the Heartbreakers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,21,Data Science,Data Science.,I don't have secondary majors.,53703,40.7831,-73.9713,Yes,none (just cheese),dog,No,night owl,Maybe,"Slow to cool down, by Fish Leong."
+COMP SCI 319:LEC004,LEC004,Yes,26,Data Science,,,53705,30.6719,104.0681,No,pineapple,dog,No,night owl,Yes,《Klaxon》-- (G)I-DLE
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,19,Business: Finance,,,53715,40.7128,-74.006,No,pineapple,neither,No,early bird,No,"""Ophelia"" By: The Lumineers"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53703,64.1472,-21.9424,Maybe,pepperoni,dog,Yes,early bird,Yes,Something in the Orange - Zach Bryan
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,18,Data Science,,Economics,53703,45.4408,12.3155,Yes,none (just cheese),dog,Yes,no preference,Maybe,Mercedes - Brent Faiyaz
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,19,Engineering: Mechanical,,,53703,30.2672,-97.7431,No,pepperoni,dog,No,night owl,Yes,Talking to the moon -Bruno Mars
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,31,Computer Science,,,53715,25.033,121.5644,Maybe,none (just cheese),cat,Yes,early bird,Maybe,SHAUN feat. Conor Maynard - Way Back Home
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,19,Computer Science,,Data Science,53715,31.2304,121.4737,Yes,mushroom,dog,No,night owl,Maybe,Blue in the Closet
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Engineering: Mechanical,,,57303,37.3806,-89.6506,No,pineapple,dog,Yes,night owl,Yes,Flapper Girl - The Lumineers
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,18,Computer Science,,,53706,17.385,78.4867,No,Other,cat,Yes,early bird,Yes,"""When You Were Mine"" - Joy Crookes"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,18,Data Science,,,53706,37.3826,-5.9963,Yes,pepperoni,dog,No,night owl,Yes,About You - The 1975
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,20,Engineering: Mechanical,,,53715,10.8231,106.6297,No,basil/spinach,cat,No,night owl,Yes,Pressure-Billy Joel
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,,Engineering: Industrial,,,53703,,,No,,,,,,
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,18,Data Science,,,53715,39.7684,-86.1581,Yes,pepperoni,dog,No,night owl,Yes,You're My Best Friend - Queen
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,21,Science: Chemistry,,Food Systems,53703,38.1157,13.3613,No,pepperoni,cat,No,no preference,Yes,Lover's Rock by TV Girl
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,18,Computer Science,,,53706,28.7041,77.1025,Yes,Other,dog,Yes,night owl,Yes,Heart shaped box - by Nirvana
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,18,Statistics,,,,23.1291,113.2644,Yes,pepperoni,cat,No,night owl,Yes,
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,19,Science: Biology/Life,,,53703,45.9834,-89.7946,No,none (just cheese),dog,No,early bird,No,Jessie's Girl by Rick Springfield
+COMP SCI 319:LEC004,LEC004,No,,Other (please provide details below).,I am current in Data Science in Human Behavior under psychology department.,,53703,29.4393,106.8877,Maybe,pineapple,neither,No,no preference,Yes,I am not sure what is my favorite song is. It changes quickly. 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,19,Science: Other,,,53703,51.0486,-114.0708,No,macaroni/pasta,dog,Yes,early bird,Yes,Feathered Indians - Tyler Childers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,20,Mathematics/AMEP,, econ,53703,48.8566,2.3522,Yes,none (just cheese),dog,No,night owl,Yes,sparks fly
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Other (please provide details below).,Economics,,53726,43.7696,11.2558,Maybe,pepperoni,cat,No,night owl,Yes,Crazy little thing called love by Queen
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,20,Other (please provide details below).,Information Science ,"Data Science (Certificate),, Digital Studies (Certificate), Chinese (2nd Major)",53715,46.0193,7.746,No,macaroni/pasta,dog,No,night owl,Yes,Backyard Boy by Claire Rosinkranz
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,n/a,n/a,53706,43.0549,-87.9521,Maybe,mushroom,dog,No,no preference,Yes,"""Night Dancer"" by imase"
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,22,Engineering: Biomedical,N/A,N/A,53188,43.0117,-88.2315,No,sausage,dog,No,night owl,Yes,Hannah Montana by Migos
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,18,Engineering: Mechanical,,,53706,41.7588,-72.7478,Maybe,pepperoni,dog,No,night owl,Yes,Broken Window Serenade By Whiskey Myers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,19,Engineering: Mechanical,,,53703,45.1236,-92.6759,No,pepperoni,neither,Yes,no preference,Yes,Time in a Bottle by Jim Croce
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,18,Data Science,I did not select other.,I do not have any secondary major.,53706,31.299,120.5853,Yes,mushroom,dog,No,night owl,Yes,"Title: Belinda Says 
+
+Artist: Alvvays"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,18,Data Science,,,53706,31.299,120.5853,Yes,none (just cheese),cat,No,night owl,Yes,(Believed Believes) Believing-Monster Siren Record/David Lin
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,18,Data Science,,,53706,44.6689,90.1718,Yes,pineapple,dog,No,night owl,Yes,FE!N by Travis Scott ft. Playboi Carti
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC001,Yes,18,Business: Information Systems,,,53706,43.0166,-88.0073,Maybe,pepperoni,cat,No,early bird,Yes,Difficult by Gracie Abrams 
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,23,Statistics,,,53703,43.0735,-89.3908,No,sausage,dog,No,night owl,Maybe,"Good Luck, Babe! -Chappell Roan"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,18,Business: Finance,,Data Science,53706,26.4434,-82.1115,Yes,none (just cheese),dog,No,night owl,Maybe,"We Major- Kanye West
+
+Viva La Vida- Cold Play
+
+ "
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,51.2094,3.2252,No,sausage,dog,No,no preference,No,The Cave by Mumford and Sons
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,18,Mathematics/AMEP,Mathematics,statistics,53706,32.052,118.778,Maybe,macaroni/pasta,dog,Yes,early bird,Maybe,I Don't Care by Ed Sheeran and Justin Bieber
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,18,Engineering: Mechanical,,,53607,35.6687,139.7708,No,pepperoni,cat,No,night owl,Yes,i need you- lynyrd skynyrd
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,53703,37.7749,-122.4194,No,pepperoni,cat,No,no preference,Yes,N/A
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,19,Business: Information Systems,,,53703,40.7128,740060,Yes,pepperoni,dog,Yes,night owl,Yes,I'm Goin' Down by Bruce Springsteen
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,20,Other (please provide details below).,Economics,,53703,41.5526,-70.6172,No,sausage,dog,Yes,early bird,No,Pink Pony Club by Chapel Roan
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Mechanical,,,53706,13.7563,100.5018,No,none (just cheese),cat,No,early bird,No,Midge Ure - The Man Who Sold the World
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,20,Business: Other,Consumer Science,"Psychology, International Studies",53715,43.0731,-89.4012,No,pepperoni,dog,Yes,no preference,Maybe,Stick Season
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,19,Computer Science,,,53703,41.8781,-87.6298,Maybe,pepperoni,cat,Yes,no preference,Yes,La Santa by Bad Bunny
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,18,Science: Physics,,History,53706,44.9017,-93.2586,No,pepperoni,dog,Yes,night owl,Yes,"""Ophelia"" by the Lumineers"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,18,Engineering: Mechanical,,,53713,41.3851,2.1734,No,pepperoni,dog,No,early bird,Yes,Any Latino Music
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,17,Mathematics/AMEP,,,53706,48.8566,2.3522,Maybe,pepperoni,dog,No,early bird,Yes,Way Down We Go - Kaleo.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,19,Engineering: Other,,,53715,44.9775,-93.2644,No,Other,dog,No,no preference,Yes,Hold Me by Fleetwood Mac
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Industrial,,,53706,32.7157,-117.1611,No,Other,cat,No,no preference,Maybe,Apple Cider - beabadobee
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Engineering: Mechanical,,,53715,4637264,802280,No,sausage,neither,Yes,night owl,No,
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Computer Science,,,53706,43.0715,-89.3967,Yes,none (just cheese),cat,Yes,no preference,Yes,
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,20,Engineering: Industrial,,,53715,20.6028,-105.2343,No,macaroni/pasta,cat,No,night owl,Yes,Annie's song by John Denver
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Mechanical,,,53706,29.9511,90.0715,No,pepperoni,dog,No,night owl,Maybe,"sugar, sugar, -The Archies"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Engineering: Mechanical,,,53703,40.7128,-74.006,No,mushroom,dog,Yes,no preference,Yes,Can I Kick It? by A Tribe Called Quest
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,19,Business: Other,Marketing,n/a,53715,41.3874,2.1686,Maybe,macaroni/pasta,dog,Yes,no preference,No,Youngblood by 5 Seconds of Summer
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,18,Data Science,,,53706,25.033,121.5654,Yes,pepperoni,dog,No,night owl,Yes,Wake Me Up by Avicii
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,18,Data Science,,Statistics,53715,35.0116,135.768,Yes,pineapple,neither,No,night owl,Maybe,"Title: Pegase 
+
+Artist: Paul Mauriat"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,18,Data Science,,I may study biomedical engineering. I would love to explore a career field that uses both biomedical engineering principles and data science.,53706,44.8281,-93.6356,Yes,pineapple,cat,Yes,night owl,Yes,Drew Barrymore by SZA
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,57326,60.3913,5.3221,No,pepperoni,dog,No,night owl,Yes,Sanctuary- Joji
+COMP SCI 319:LEC003,LEC003,No,22,Engineering: Biomedical,,,53726,43.0389,-87.9065,No,sausage,dog,Yes,no preference,Maybe,"Jackie and Wilson, Hozier"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,19,Other (please provide details below).,Economics,Information Science,53703,39.0997,-94.5786,Maybe,pepperoni,dog,Yes,night owl,No,Sun to Me by Zach Bryan
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,20,Other (please provide details below).,Data Science and Economics,,53715,-8.4095,115.1889,Yes,mushroom,dog,No,no preference,Yes,I want to break free - Queen 
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Data Science,,,53703,22.3964,114.1095,Maybe,pepperoni,cat,No,night owl,Yes,good luck babe!---Chaeppel Roan
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Engineering: Mechanical,,,53715,34.4256,-77.5469,No,mushroom,dog,No,night owl,Yes,Hold On - The Internet
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,53703,51.5074,-0.1278,No,basil/spinach,dog,Yes,night owl,Maybe,Fatal Trouble by ENHYPEN
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC002,Yes,19,Engineering: Mechanical,,,78746,25.9017,-97.4975,No,pepperoni,dog,No,night owl,Yes,Going Down-Freddie King
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,18,Science: Biology/Life,,,53706,46.7867,-92.1005,No,sausage,dog,Yes,night owl,Maybe,Rock and Roll by Ken Carson
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,19,Engineering: Mechanical,,,53711,38.9072,-77.0369,Maybe,none (just cheese),dog,No,early bird,No,Have you seen the rain - CCR
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,19,Science: Physics,N/A,N/A,53706,50.9405,6.9599,Maybe,macaroni/pasta,dog,Yes,night owl,Maybe,Funny Thing by Thundercat
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,20,Engineering: Mechanical,,,53703,38.9072,-77.0369,No,pepperoni,dog,Yes,early bird,Maybe,Pyramid - ALYSS
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Engineering: Mechanical,,,53703,43.0722,89.4008,No,sausage,cat,No,night owl,Yes,"Miserlou, Dick Dale"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,19,Data Science,,,53703,40.7128,-74.006,Yes,Other,dog,No,no preference,Yes,Purple Rain by Future.
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,18,Engineering: Mechanical,,,53706,45.6793,-111.0466,No,pineapple,dog,Yes,no preference,Maybe,Rather Be - Clean Bandit
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Industrial,,,53703,43.7696,11.2558,No,pineapple,dog,Yes,night owl,No,thats life by frank sinatra
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,18,Data Science,,,53706,40,-105.2705,Yes,pepperoni,dog,No,night owl,Maybe,Fool in the Rain - Led Zeppelin
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Business: Finance,,Data Science,53703,35.1821,-120.7327,Yes,pepperoni,dog,Yes,early bird,No,Breakdown by Jack Johnson
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,17,Data Science,,,53706,41.8818,-87.6232,Yes,mushroom,dog,No,night owl,Yes,I really want to stay at your house: Rosa Walton
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,18,Data Science,,Information Science,53706,51.4968,-0.1909,Yes,sausage,dog,No,night owl,Yes,Skinny Love - Bon Iver
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Industrial,,,53706,41.8781,-87.6298,No,sausage,dog,No,night owl,Yes,Take It Easy by the Eagles
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,Maybe,pepperoni,dog,Yes,no preference,Maybe,Ring of Fire - Johnny Cash
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,18,Engineering: Mechanical,,,53703,40.7128,-74.006,No,sausage,dog,No,early bird,No,Enecs Eht No kcaB- One Be Lo
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,21,Business: Information Systems,,,53715,43.0731,-89.4012,No,pepperoni,dog,No,night owl,Maybe,"Flagpole Sitta, Harvey Danger"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,18,Science: Biology/Life,,,53706,45.1478,-90.3433,No,mushroom,dog,Yes,no preference,Maybe,"Brandy, Looking Glass"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,18,Business: Finance,,,53703,27.9506,-82.4572,Maybe,pineapple,cat,No,no preference,Yes,"Get Lucky, Daft Punk + Pharrell"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,19,Engineering: Mechanical,,,53711,32.777,96.797,No,mushroom,dog,No,early bird,No,Mess It Up - Gracie Adams
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,18,Data Science,,,53706,74.006,40.7128,Yes,none (just cheese),dog,Yes,no preference,No,Astrothunder by Travis Scott
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,19,Data Science,,Economics with a math emphasis.,53706,40.4406,-79.9959,Yes,none (just cheese),dog,Yes,no preference,Maybe,Jigsaw Falling Into Place by Radiohead
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,19,Data Science,,Economics,53706,58.2954,-134.4163,Yes,sausage,dog,Yes,early bird,Yes,The Cave by Mumford and Sons
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,19,Business: Information Systems,,,53703,19.4326,-99.1332,No,pepperoni,dog,No,night owl,Maybe,No Me Sueltes by Rauw Alejandro
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,17,Science: Physics,,,53706,35.6895,139.6917,Maybe,pepperoni,cat,No,night owl,Yes,Mitski - Pearl
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Mechanical,,,53706,51.5074,-0.1278,No,pepperoni,dog,Yes,night owl,No,Ain't no love in Oklahoma by Luke Combs
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,18,Data Science,,,53706,43.0731,-89.4012,Yes,pepperoni,cat,No,no preference,Maybe,In My Head by Jason Derulo
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Other (please provide details below).,economics and data science,,53703,42.3601,-71.0589,Yes,Other,dog,Yes,no preference,Yes,American pie by Don Mclean
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Science: Biology/Life,,,53715,43.0389,-87.9065,Yes,macaroni/pasta,cat,No,no preference,No,"why, why, why, shawn mendes"
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,21,Engineering: Biomedical,,,53703,43.4799,110.7624,No,pepperoni,dog,No,night owl,Yes,"Right Down the Line, Jerry Rafferty"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,No,sausage,dog,Yes,night owl,Yes,"""Follow God"" - Kanye West"
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Industrial,N/A,N/A,53715,43.0739,-89.3852,No,pepperoni,cat,No,night owl,Yes,"I love you, I'm Sorry by Gracie Abrams"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Mechanical,,,53706,28.3667,121.3667,Maybe,sausage,neither,No,no preference,Maybe,もう私の歌は聞こえない by 回路-kairo-
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Business: Actuarial,,,53706,43,89,No,sausage,cat,No,night owl,Yes,I wan'na be like you - Big Bad Voodoo Daddy
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Economics,Mathematics,53715,31.2304,121.4737,Maybe,mushroom,dog,Yes,night owl,Yes,Taylor Swift
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Data Science,,Economics,53706,33.6859,-117.8247,Yes,pineapple,neither,No,night owl,Yes,Starboy by the The Weeknd
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,21,Other (please provide details below).,,,53715,49.2827,-123.1207,Maybe,pineapple,dog,No,early bird,No,Fire for You - Cannons
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,17,Business: Other,,Data Science,53706,41.8781,-87.6298,Yes,mushroom,dog,Yes,night owl,Yes,baby birkin - gunna 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Engineering: Mechanical,,,53706,43.1117,-88.5011,No,pineapple,dog,Yes,night owl,No,International Love by Pitbull
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,18,Engineering: Industrial,,,53706,45.5385,92.4249,No,pineapple,dog,Yes,night owl,Maybe,Springsteen by Eric Church 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,19,Engineering: Industrial,,,53715,41.9029,12.4534,No,mushroom,dog,Yes,early bird,Yes,The Ballad of Sir Frankie Crisp - George Harrison
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,18,Data Science,,Economics,53706,44.9867,-93.2638,Yes,pepperoni,dog,Yes,night owl,Yes,Lady Killers II by G-Eazy
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,20,Data Science,,Criminal Justice,53715,42.3611,-71.0571,Yes,Other,dog,No,night owl,Yes,Ring of Fire by Johnny Cash
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,18,Other (please provide details below).,Data Science,Spanish,53706,40.4168,-3.7038,Yes,pepperoni,neither,No,early bird,No,September by Earth Wind and Fire
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,20,Engineering: Mechanical,,,53706,57.6627,-2.5234,No,pineapple,dog,Yes,early bird,Yes,I Will Survive by Gloria Gaynor
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,19,Other (please provide details below).,economics,statistics,54413,46.7867,92.1005,Maybe,pepperoni,dog,Yes,night owl,Yes,this is how we roll flordia georgia line
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,21,Data Science,,,53703,45.5122,-122.6587,Yes,macaroni/pasta,cat,No,night owl,Yes,Isabella of Castile by STRFKR
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,18,Other (please provide details below).,"Now I'm still finding my major. The classes I took are ECON and CS. I want to enroll in business school next year, so I'd like to earn some knowledge about computer science and data analysis. Also, this is my first contact with computer science.",,53706,49.2634,-123.2609,Maybe,sausage,dog,Yes,night owl,Maybe,This is me- Keala Settle
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Biomedical,,,53715,45.1277,-87.2473,No,pepperoni,dog,Yes,night owl,Yes,Style by Taylor Swift!!
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,31,Data Science,,,53714,43.0434,141.3501,Yes,Other,neither,Yes,early bird,Yes,"Running up that hill, by Marc Canham & Candy Says"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Computer Science,,,53706,30.2672,97.7431,Maybe,pepperoni,dog,Yes,no preference,Maybe,"""okayy"" - Koi"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,Yes,18,Data Science,,,53703,41.8781,87.6298,Yes,mushroom,cat,No,night owl,Yes,Something's Wrong with the Morning- Margo Guryan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,19,Engineering: Mechanical,,,53715,37.7749,-122.4194,No,sausage,cat,Yes,early bird,Yes,Confident Demi Lovato
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,19,Data Science,,,53706,44.9437,-93.0943,Yes,pepperoni,dog,No,night owl,Yes,Baker Street - Gerry Rafferty
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Computer Science,,,53706,26.3968,75.9375,Maybe,pineapple,dog,No,night owl,Yes,Boys a Liar Pink Panthress
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,18,Data Science,,,53706,12.9716,77.5946,Yes,pineapple,dog,No,no preference,Maybe,taylor swift- august
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53711,39.2475,106.3002,No,sausage,dog,Yes,no preference,No,Fats Domino- Ain't That a Shame
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,19,Engineering: Mechanical,,,53703,40.7128,-74.006,No,pepperoni,dog,No,night owl,Maybe,Alright-Kendrick Lamar
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53715,43.0748,-89.3838,No,sausage,dog,Yes,night owl,No,Falling by Trevor Daniel
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,21,Other (please provide details below).,Information Science,Data Science certificate and Digital Studies certificate. ,53703,34.0522,-118.2437,Maybe,pepperoni,dog,No,night owl,Maybe,'87 Stingray by Tory Lanez
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,21,Other (please provide details below).,Political Science,,53703,40.7128,-74.006,Maybe,none (just cheese),cat,Yes,night owl,No,Devil's Advocate by The Neighbourhood
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,19,Engineering: Mechanical,,,53703,43.0362,-89.55,No,pepperoni,dog,No,no preference,Yes,Smooth Operator - Sade
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,20,Other (please provide details below).,Economics,,53703,26.0511,119.2616,Maybe,green pepper,cat,No,night owl,Yes,"Life Goes On, 2Pac"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,20,Engineering: Industrial,n/a,n/a,53715,33.4484,112.074,No,pepperoni,cat,Yes,night owl,Yes,anything by Beyonce
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,18,Data Science,,,53706,45.4745,-89.7292,Yes,sausage,dog,No,early bird,Yes,"Earfquake by Tyler, the Creator"
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,22,Science: Physics,No,No,53703,35,139,Maybe,pineapple,cat,Yes,night owl,Yes,Marigold by Aimyon
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,No,pepperoni,dog,Yes,night owl,Yes,Where the Wild Things Are -Luke Combs 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,19,Other (please provide details below).,Political Science and Legal Studies (Pre-Law),,53706,2.0211,45.3625,No,pineapple,cat,Yes,night owl,Maybe,Birds of a Feather by Billie Eilish
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,Yes,18,Data Science,,,53706,-6.1751,106.865,Yes,mushroom,cat,Yes,no preference,Maybe,Chaleya by Arijit Singh and Shilpa Rao
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,20,Business: Finance,,Information systems,53703,44,93,No,pepperoni,dog,Yes,night owl,Yes,Running out of time- Tyler the creator
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,,Data Science,,,53706,25,127,Yes,pepperoni,cat,Yes,night owl,Yes,Moonlight Sonata by Beethoven
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Industrial,,,53706,45.8167,9.0833,Maybe,pepperoni,dog,Yes,early bird,Maybe,"Everywhere, Everything by Noah Kahan"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,20,Statistics,,,53715,44.9532,35.7312,Maybe,pepperoni,dog,No,night owl,Maybe,Margaritaville Jimmy Buffet
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC002,No,19,Engineering: Mechanical,,,53703,43.0775,-89.3933,No,pepperoni,neither,No,night owl,Maybe,The adults are talking- The Strokes
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,18,Statistics,n/a,Data science,53706,40.7128,-74.006,Yes,mushroom,cat,Yes,no preference,No,Rumor Has It- Adele
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,21,Science: Biology/Life,,,53703,45.4368,-89.1829,No,sausage,dog,Yes,no preference,No,February Seven by The Avett Brothers
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,21,Other (please provide details below).,Consumer Behavior and Marketplace Studies ,"Data Science, Entrepreneurship ",53703,41.3879,2.1699,No,pepperoni,dog,No,night owl,Yes,Weird by Kaytranada 
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53703,43.659,-70.256,No,sausage,dog,Yes,night owl,Yes,Sail Away - David Gray
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,20,Other (please provide details below).,Electrical Engineering and Computer Science are my majors,,53593,12.9716,77.5946,No,pineapple,dog,Yes,early bird,Yes,I did something bad - Taylor Swift
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53715,48.7596,-113.787,No,pepperoni,dog,Yes,night owl,Yes,Creed - One Last Breath
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Engineering: Mechanical,,,53703,20.7416,-156.4508,No,pepperoni,dog,No,early bird,Yes,Gimme! Gimme! Gimme! - ABBA
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,Yes,18,Business: Information Systems,,,53706,40.6299,14.4863,Maybe,pepperoni,dog,No,early bird,No,The Archer by Taylor Swift 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,,Other (please provide details below).,Undecided,,53703,48.8566,2.3522,Maybe,basil/spinach,neither,Yes,no preference,Yes,Seryoga - Chernyi Bumer
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,,Other (please provide details below).,Undecided,,53703,48.8566,2.3522,Maybe,basil/spinach,neither,Yes,no preference,Yes,
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,20,Other (please provide details below).,Economics,,53715,-25.909,29.1346,No,pepperoni,cat,No,night owl,Yes,"Heartful Song
+
+by Shugo Chara"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Statistics,,,53706,43.1363,-89.7443,Maybe,pepperoni,dog,No,night owl,Yes,Counting Stars by OneRepublic
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53703,32.7157,-117.1611,No,pineapple,dog,No,early bird,No,Please Please Please by Sabrina Carpenter
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,20,Data Science,,Economics,53703,33.4993,126.5275,Yes,mushroom,dog,Yes,early bird,No,"Things you said
+
+Cody fry"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,21,Data Science,N/A,N/A,53703,48.8566,2.3522,Yes,pepperoni,cat,No,early bird,No,Run Away - Ye
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Biomedical,,,53706,27.2679,-82.5555,No,pepperoni,dog,Yes,night owl,No,Burn Burn Burn by Zach Bryan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,20,Data Science,,,53703,40.6263,14.3757,Yes,pineapple,dog,No,night owl,Yes,Dadvocate-Childish Gambino
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,18,Business: Finance,,,53706,31.7683,35.2137,Yes,pepperoni,neither,Yes,night owl,No,Get It Together by Drake
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,20,Statistics,no answer,data science,53703,6.1211,100.3698,Maybe,pineapple,cat,No,night owl,Yes,Forgot About Us by Keenan Te 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,18,Data Science,,,53706,41.8781,-87.6298,Yes,pepperoni,cat,No,no preference,Yes,Image - Magdalena Bay
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,20,Statistics,Statistics,,53715,45.55,6.52,Maybe,mushroom,neither,Yes,night owl,Yes,Dirty Deeds Done Dirt Cheap----AC/DC
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,19,Engineering: Mechanical,,,53562,43.0969,-89.5115,Maybe,sausage,cat,No,early bird,Maybe,My Way - Frank Sinatra
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53719,41.8781,-87.6298,No,pepperoni,dog,No,night owl,Yes,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,19,Business: Finance,Majors: Finance and Information Systems,N/A,53703,48.8566,2.3522,No,mushroom,cat,Yes,night owl,Yes,Jersey Giant by Evan Honer
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,No,20,Science: Other,,,53715,43.0737,-89.4287,No,pepperoni,dog,No,early bird,Maybe,Arabesque No. 1 by Claude Debussy
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,19,Mathematics/AMEP,,,53715,38.6676,-84.5275,No,pepperoni,dog,No,night owl,Yes,Jackie and Wilson by Hozier 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,20,Business: Information Systems,,,53715,9.7091,-85.166,No,sausage,dog,Yes,early bird,No,Follow Me - Uncle kracker
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,19,Science: Biology/Life,N/A,N/A,53715,37.7798,-122.4299,No,sausage,cat,No,night owl,Yes,My Kink is Karma by Chappell Roan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,18,Science: Biology/Life,,Statistics,53706,43.0731,-89.4012,Maybe,mushroom,cat,No,night owl,Maybe,Love story
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,18,Data Science,,,53706,39.7555,-105.2211,Yes,sausage,cat,Yes,early bird,Maybe,Takin it to the Streets - The Doobie Brothers
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,53703,52.37,4.895,No,Other,dog,Yes,no preference,No,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,18,Engineering: Mechanical,,,55325,43.0731,-89.4012,No,pepperoni,dog,Yes,early bird,Maybe,"Mozzarella, Yung Gravy and Lil Keed"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Engineering: Mechanical,Engineering: Mechanical,none,53715,43.6275,-89.7661,No,sausage,dog,Yes,night owl,Yes,Simple Man by Shinedown
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,18,Engineering: Industrial,n/a,n/a,53706,50.0647,19.945,No,pineapple,dog,No,night owl,Yes,sunday morning -- maroon 5
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,22,Business: Other,I'm in the Consumer Behavior and Market Place Studies program in SOHE,Certificate in Data Science. ,53703,45.4642,9.19,Maybe,pepperoni,dog,Yes,early bird,Yes,Salad Days - Mac Demarco
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,18,Other (please provide details below).,psychology,,53706,41.8781,-87.6298,No,pepperoni,dog,Yes,night owl,Yes,Till It Shines - Bob Segar
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Biomedical,N/A,N/A,53703,41.9028,12.4964,No,basil/spinach,dog,Yes,night owl,Maybe,"Miserere Mei- Gregorio Allegri
+
+ "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,17,Engineering: Mechanical,,,53706,35.6764,139.65,No,sausage,dog,Yes,night owl,Yes,"Mr. Blue Sky,  by Electric Light Orchestra"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,Yes,21,Other (please provide details below).,econ ,data science,53703,23.1291,113.2644,Yes,sausage,dog,No,night owl,Yes,Love Story--Taylor Swift
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Industrial,,,53706,46,-90,No,pepperoni,dog,No,no preference,Yes,Narco by timmy trumpet
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,19,Mathematics/AMEP,,,53714,41.3809,2.1228,No,pepperoni,cat,No,night owl,No,Saturn by SZA
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Data Science,,,53706,30.3165,78.0322,Yes,pepperoni,dog,Yes,night owl,Yes,overwhelmed by Ryan mack
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,No,18,Other (please provide details below).,Undecided,,53045,41.9028,12.4964,Maybe,sausage,cat,No,no preference,Yes,forrest gump by frank ocean
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Business: Actuarial,,Data Science,53715,53.4084,-2.9916,Yes,Other,neither,Yes,no preference,No,La Belle Fleur Sauvage - Lord Huron
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,18,Data Science,N/A,N/A,53706,35.689,139.692,Yes,pepperoni,dog,Yes,early bird,Maybe,"The Sweet Escape by Gwen Stefani, Akon"
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,18,Engineering: Industrial,,,53706,30.1512,-85.7683,No,pepperoni,dog,No,no preference,Maybe,Ice Age by Don Toliver (feat. Travis Scott)
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,18,Data Science,,,53706,40.7128,-74.006,Maybe,mushroom,neither,Yes,no preference,Yes,varnish-African American sound recordings
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,No,19,Other (please provide details below).,Economics,Mathematics,53715,394754,893917,Maybe,pineapple,cat,No,night owl,Yes,SAMIDOT - Kendrick Lamar
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,20,Engineering: Mechanical,,,53726,42.8961,-88.0679,Maybe,pepperoni,dog,Yes,no preference,Maybe,Jesus Walks by Kanye West 
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Industrial,,,53706,40.4406,-79.9959,Maybe,sausage,dog,Yes,no preference,Yes,We Are the People - Empire of the Sun
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53703,9.9585,-84.1232,No,pepperoni,dog,Yes,no preference,Yes,Stars - HUM
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,19,Computer Science,,,53706,1.17,103.5,Maybe,pineapple,cat,No,night owl,Yes,
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Engineering: Mechanical,n/a,n/a,53715,41.8732,-87.6263,No,pepperoni,dog,No,no preference,Maybe,Free Bird - Lynyrd Skynyrd
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,20,Other (please provide details below).,I'm an Econ major doing a Data Science Certificate.,,53703,38.8935,-77.0147,No,pepperoni,dog,Yes,early bird,No,Scar Tissue - Red Hot Chili Peppers
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,20,Science: Physics,,,53715,47.4979,19.0402,Maybe,pineapple,dog,No,early bird,Maybe,Mourning By: Post Malone
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,18,Engineering: Mechanical,,,53703,41.8781,-87.6298,No,pepperoni,dog,No,early bird,Maybe,Paranoid by black sabbath
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,21,Science: Biology/Life,,,53715,43.0384,-83.7176,No,pineapple,dog,Yes,no preference,Yes,"""Tattoo"" by Jordan Sparks"
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Science: Biology/Life,,Statistics ,53706,43.0731,-89.4012,No,green pepper,dog,Yes,early bird,No,Sunflower - By: Post Malone 
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,21,Other (please provide details below).,Economics,n/a,53703,44.0142,-73.1667,No,basil/spinach,dog,Yes,early bird,Maybe,Everlong - Foo Fighters
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,19,Other (please provide details below).,"Deciding between data science, Econ, or personal finance ","deciding between - econ, data science, business ",53703,42.3601,-71.0589,Yes,basil/spinach,dog,No,no preference,Maybe,upside down - jack johnson
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,20,Other (please provide details below)., Economics,Data science,53706,41.8781,-87.6298,Yes,pepperoni,dog,Yes,no preference,Maybe,"Wonderwall, Oasis "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,20,Science: Other,Environmental science,Biology,53715,30.1999,107.7324,Maybe,none (just cheese),cat,No,night owl,Maybe,Chasing Pavement - Adele
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,19,Engineering: Mechanical,,,53715,28.4741,-81.4652,No,sausage,dog,No,night owl,Maybe,"All of the Lights - Kanye West
+
+or 
+
+The Heart Part 5 - Kendrick Lamar "
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,18,Data Science,,"Marketing, Computer Science",53715,40.7128,-74.006,Yes,pepperoni,dog,No,no preference,Yes,Murder on the Dancefloor by Sophie Ellis-Bextor
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,18,Other (please provide details below).,Economics,,53703,31.2304,121.4737,Maybe,mushroom,cat,No,night owl,Maybe,do not disturb
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,19,Business: Actuarial,,,53715,51.5,-0.13,Maybe,pepperoni,dog,No,night owl,Maybe,Right Down the Line- Gerry Rafferty
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,19,Computer Science,N/A,Data science as my double major with computer science and then a certificate in business as well,53706,41.8781,-87.6298,Yes,sausage,dog,Yes,no preference,Maybe,"Me and My Guitar, A Boogie wit da Hoodie"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Data Science,,,53715,41.0151,28.9795,Yes,none (just cheese),cat,No,early bird,Maybe,Always by Daniel Caesar
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Mechanical,,,53706,41.4798,-81.5291,No,pepperoni,dog,Yes,no preference,Maybe,"Friendly Pressure - jhelisa, sunship"
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,,,53703,41.8781,87.6298,No,pineapple,dog,Yes,no preference,Yes,"Brandy - Looking Glass
+
+ "
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,19,Engineering: Mechanical,N/A,N/A,53703,41.8773,12.4728,No,macaroni/pasta,dog,Yes,early bird,Yes,Juna - Clairo
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,19,Engineering: Biomedical,,,53718,-33.8766,-208.7922,Maybe,mushroom,cat,Yes,night owl,Yes,
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,18,Engineering: Industrial,,,53706,59.3293,18.0686,Maybe,sausage,dog,No,early bird,Yes,20 something by SZA
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,18,Data Science,,,53706,43.0722,89.4008,Yes,pepperoni,dog,Yes,night owl,Yes,Perfect Pair by beabadoobee
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,19,Engineering: Mechanical,,,53703,52.3702,4.8952,No,none (just cheese),dog,Yes,night owl,Yes,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,Yes,,Engineering: Biomedical,,,53715,52.1326,5.2913,No,none (just cheese),dog,Yes,night owl,Yes,There's nothin' holdin' me back - shawn mendes
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Engineering: Biomedical,,,53715,50.0755,14.4378,No,mushroom,dog,No,night owl,Yes,Sundress by A$AP Rocky
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,19,Science: Other,,,53715,45.4642,9.19,No,pepperoni,cat,No,early bird,No,
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,18,Data Science,,,53706,44.6366,-124.0545,Yes,pepperoni,dog,Yes,night owl,Yes,Boys of Faith -Zach Bryan
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,18,Other (please provide details below).,Computer Engineering,Computer Science,53706,41.0082,28.9784,No,sausage,cat,No,night owl,Yes,Playing God by Polyphia
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,21,Science: Other,,,53703,40.7128,-74.006,No,none (just cheese),dog,No,night owl,Yes,Rain Song - Led Zepp
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,18,Other (please provide details below).,astronomy-physics and data science,data science,53706,12.9716,77.5946,Yes,none (just cheese),cat,Yes,night owl,Yes,arabella by arctic monkeys
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,No,19,Business: Other,Business: Marketing,,53706,41.385,2.1734,No,pepperoni,dog,No,night owl,Maybe,Tribe by Bas and J.Cole
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Mechanical,,,53703,43.1048,-88.3429,No,pepperoni,dog,No,early bird,No,Sister Golden Hair (LIVE version) by America
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,18,Other (please provide details below).,"Humanities field. Journalism, sociology etc.","Statistics, public health, or languages",53706,31.3,120.6,No,none (just cheese),dog,No,night owl,Yes,"Morirò da Re, by Måneskin"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,20,Data Science,x,Economics,53706,37.5665,126.978,Maybe,none (just cheese),dog,Yes,no preference,Maybe,"If I knew - Bruno Mars
+
+ "
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,18,Data Science,,,53706,43.0813,-88.9117,Yes,pepperoni,dog,No,night owl,Yes,American Pie by Don McLean
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,Yes,18,Other (please provide details below).,Economics,,53706,43.7034,7.2663,No,none (just cheese),dog,No,night owl,No,Runaway- Kanye West
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,18,Other (please provide details below).,I am undecided but I am planning to apply to the engineering school for Industrial Engineering. ,,53706,40.7128,-74.006,No,basil/spinach,dog,No,night owl,Yes,Deep Satin by Zach Bryan
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,19,Engineering: Biomedical,,,53726,43.0731,-89.4012,Maybe,pepperoni,cat,Yes,no preference,No,circadian rhythm - Drake
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,20,Other (please provide details below).,Information Science,,53703,43.0731,-89.4012,No,pepperoni,cat,No,no preference,Yes,Bye-Bye by Jo Dee Messina
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,19,Computer Science,,,53703,43.0731,-89.4012,Yes,macaroni/pasta,dog,Yes,early bird,Yes,"""It was a good day"" Ice Cube"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,17,Engineering: Mechanical,,,53707,40.7131,-74.0072,No,pepperoni,dog,Yes,night owl,Yes,Lost in Japan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,18,Engineering: Industrial,,,53706,65.8747,-18.9404,Maybe,sausage,dog,No,early bird,No,Good Days by SZA
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,21,Science: Biology/Life,,,53703,41.3851,2.1734,No,pineapple,cat,Yes,no preference,No,Bless the Telephone by Labi Siffre
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,19,Science: Other,Neurobiology,Data Science,53715,36.3932,25.4615,Maybe,none (just cheese),dog,Yes,night owl,Yes,You make my dreams come true
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,18,Business: Information Systems,,Business Management,53706,51.5074,-0.1278,No,pineapple,dog,Yes,no preference,Yes,The Chain - Fleetwood Mac
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,53703,43,-89,No,pineapple,dog,No,night owl,No,"Can't Stop, Red Hot Chili Peppers."
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53703,43.2283,-87.9642,Maybe,pepperoni,dog,Yes,night owl,Maybe,black hole sun- soundgarden 
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,Yes,20,Business: Finance,,Entrepreneurship,53715,31.8962,34.8486,No,pepperoni,dog,No,early bird,No,Vertigo - ANOTR
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Industrial,,,53706,41.887,-87.6273,No,pineapple,dog,No,early bird,No,"Ozeba by Rema
+
+Put Your Records on by Corrine Bailey Rae 
+
+Angel by Halle"
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,No,19,Statistics,,"Applied Math, Economics ",53706,42.3601,-71.0589,Maybe,pineapple,dog,Yes,early bird,Yes,Close to you - Gracie Abrams 
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,20,Other (please provide details below).,Economics ,No secondary majors.,53703,43.0722,-89.401,No,pepperoni,dog,Yes,night owl,Yes,Run out of Tears by Riley green. 
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,Yes,18,Computer Science,,,53706,48.8647,2.349,No,pineapple,dog,Yes,night owl,Maybe,too fast by sonder
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC001,Yes,21,Business: Other,Consumer Behavior and Marketplace Studies,,53703,47.6062,-122.3321,No,mushroom,cat,Yes,early bird,Maybe,Booster Seat by Spacey Jane
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,18,Other (please provide details below).,undecided,,53706,43.9101,-78.8206,Maybe,pineapple,neither,Yes,no preference,Maybe,
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,18,Engineering: Mechanical,,,53703,32.72,-117.16,No,sausage,cat,Yes,night owl,Yes,Party!! Ryokuoushoku Shakai
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,19,Engineering: Mechanical,,,53711,44.95,93.1,No,pepperoni,dog,Yes,early bird,Yes,Cleaning windows by van morrison
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,No,18,Engineering: Industrial,,,53706,1.3521,103.8198,No,green pepper,dog,Yes,early bird,No,"Heartbreaker, Justin Bieber "
+COMP SCI 319:LEC003,LEC003,No,23,Science: Biology/Life,,,53703,64.9631,-19.0208,No,pineapple,dog,No,night owl,Maybe,Sunflower - Post Malone/Swae Lee
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,No,20,Engineering: Industrial,,,53703,25.2048,55.2708,No,sausage,dog,No,night owl,Maybe,
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,20,Engineering: Biomedical,N/A,N/A,53715,41.8781,-87.6298,Maybe,pepperoni,dog,No,night owl,Yes,"Feel the Fiyaaaah, Metro Boomin"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,Yes,18,Science: Biology/Life,,,53715,44,-92,No,sausage,dog,No,no preference,No,Jukebox Joints—ASAP Rocky
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,18,Other (please provide details below).,Engineering Mechanics ,,53532,48.8566,2.3522,Maybe,sausage,neither,No,night owl,Yes,Do I Wanna Know? by Artic Monkeys
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Engineering: Mechanical,,,53715,33.1959,-117.3795,No,pepperoni,dog,No,early bird,No,"She - Tyler the creator, Frank Ocean"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,18,Data Science,,Economic ,53706,32.0603,118.7969,Yes,macaroni/pasta,dog,Yes,early bird,No,"Monster
+
+Justin Bieber"
+COMP SCI 319:LEC004,LEC004,Yes,23,Statistics,Economics,,53715,31,120,Yes,sausage,cat,Yes,night owl,Yes,Ballade pour Adeline
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Engineering: Mechanical,,,53726,43.6418,-79.3707,No,pepperoni,dog,No,night owl,Maybe,Paper Planes - M.I.A.
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,Yes,19,Business: Finance,,,53701,40.7128,-74.006,No,pepperoni,dog,No,night owl,Yes,"God's Plan, Drake"
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,20,Business: Finance,,Japanese,53715,35.662,139.7038,No,sausage,dog,Yes,no preference,Yes,We Are (One Piece) by Miura Jam
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,18,Engineering: Mechanical,,,53706,35.9802,-75.6421,No,pepperoni,dog,No,no preference,No,Lonely East Texas Night by Whiskey Meyers
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,20,Other (please provide details below).,Music Performance,,53703,47.3769,8.5417,No,green pepper,cat,No,early bird,Maybe,Anesthetize - Porcupine Tree
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Engineering: Mechanical,,,53706,43.0731,-89.4012,No,basil/spinach,dog,Yes,night owl,Yes,Springsteen - Eric Church
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,19,Engineering: Mechanical,,,53711,55.6761,12.5683,No,sausage,dog,Yes,early bird,No,Skater Boi - Avril Lavigne
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,No,19,Engineering: Mechanical,NA ,NA,53715,44.58,93.15,No,sausage,dog,Yes,no preference,No,"""Earfquake"" by Tyler, the Creator "
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53715,45.2,-93.2,No,sausage,dog,No,early bird,Yes,Major Tom - Peter Schilling
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,19,Engineering: Biomedical,,,53703,42.35,-71.06,No,mushroom,dog,Yes,night owl,Yes,Alchemy by Taylor Swift
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,18,Engineering: Mechanical,,,53715,42.7261,-87.7829,No,pepperoni,dog,No,no preference,No,"Hotel California, The Eagles"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,21,Other (please provide details below).,"1. Math for economics and finance
+
+ ",Psychology,53703,30.274,120.155,No,mushroom,dog,No,night owl,Yes,Gu Chu by AGA
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,43.8511,87.7351,No,mushroom,dog,No,no preference,Yes,Do Not Disturb by Drake
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,18,Statistics,,,53532,43.0731,-89.4012,No,sausage,dog,Yes,no preference,No,Any song by Zach Bryan.
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,23,Languages,,,53717,35.6895,35.6895,No,macaroni/pasta,cat,No,night owl,Yes,Bling-Bang-Bang-Born by Creepy Nuts
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,21,Other (please provide details below).,Economics,,53703,2.9606,461.7569,Maybe,basil/spinach,cat,No,night owl,Maybe,Every Breath You Take - The Police
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,19,Engineering: Mechanical,,,53715,45.2991,45.2991,Maybe,basil/spinach,dog,Yes,night owl,Maybe,Sandpaper by Zach Bryan(feat. Bruce Springsteen)
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Other,Electrical Engineering,,53706,44.5328,-89.5703,Maybe,sausage,dog,No,no preference,Yes,Snow Zach Bryan
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,40.7128,-74.006,Yes,Other,dog,Yes,no preference,No,Everywhere Everything by Noah Kahan
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,19,Engineering: Mechanical,,,53703,34.0522,-118.2437,No,green pepper,neither,Yes,early bird,No,
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,19,Business: Information Systems,,Operations and Technology Management and a certificate in Data Science,53703,38.9072,-77.0369,Maybe,pepperoni,dog,Yes,no preference,No,Ordinary People by John Legend 
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,18,Data Science,,,53706,55.9533,-3.1883,Yes,pineapple,cat,No,early bird,Maybe,First Date by Shayfer James
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,19,Business: Finance,,,53703,,-85.4047,Maybe,none (just cheese),dog,No,no preference,Yes,"ms jackson, outcast"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,18,Engineering: Industrial,,,53706,40.2888,-76.6549,No,pepperoni,dog,No,early bird,Maybe,Talkin Tennessee by Morgan Wallen
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,22,Business: Information Systems,,,53545,41.8781,-87.6298,No,pepperoni,dog,No,night owl,Yes,Rich Spirit- Kendrick Lamar
+COMP SCI 319:LEC003,LEC003,Yes,24,Science: Biology/Life,,,53715,-33.4489,-70.6693,No,pepperoni,dog,Yes,night owl,Yes,Disciples by Tame Impala
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,No,19,Other (please provide details below).,Will be majoring in economics and minoring in data science,Minor in Data science,53703,40.7306,73.9352,Maybe,pepperoni,dog,No,night owl,Maybe,"It was a good day 
+
+Ice cube"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,18,Computer Science,,,53706,44.8827,-93.2066,Maybe,basil/spinach,dog,No,early bird,Maybe,Beaches - beabadoobee
+COMP SCI 319:LEC003,LEC003,No,24,Engineering: Other,Material Science and Engineering,Electrical Engineering,53703,34.7,113.6,No,sausage,neither,No,night owl,Yes,"Moonlight Sonata, Beethoven"
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Industrial,,,53706,41.9028,12.4964,No,sausage,dog,No,night owl,Maybe,She calls me back by Noah Kahan
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,19,Science: Physics,,,53715,44.8977,-85.9916,No,pepperoni,dog,No,night owl,Maybe,The Adults Are Talking by The Strokes
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,20,Business: Finance,,Business: Information Systems,53703,21.3069,-157.8583,No,pepperoni,dog,No,night owl,Yes,Under the bridge - red hot chili peppers
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,20,Statistics,,neurobiology,53706,43.0731,-89.4012,No,pepperoni,dog,Yes,early bird,Yes,Stick season by Noah Kahn
+COMP SCI 319:LEC004,LEC004,No,28,Other (please provide details below).,Environment and Resources,,53705,35,126,No,pineapple,neither,Yes,early bird,Yes,Any songs :)
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,18,Data Science,,Math w/ emphasis on risk,53703,41.8818,-87.6232,Yes,sausage,cat,No,night owl,Yes,New Romantics - Taylor Swift
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Data Science,N/A,"Computer science, Mathematics ",53703,41.0082,28.9784,Yes,basil/spinach,cat,Yes,no preference,Maybe,Free Now by Gracie Abrams
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Mathematics/AMEP,Math,,53703,31.22,121.48,No,basil/spinach,neither,Yes,night owl,Maybe,"What goes around comes back around ,Justin Timberlake 
+
+the last great American dynasty,Taylor swift
+
+willow,Taylor swift
+
+Satellite,Lena(German singer)
+
+ "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,22,Other (please provide details below).,Sociology ,N/A,53703,8.6679,7.8223,No,pineapple,cat,Yes,early bird,Yes,360 by Charli xcx
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,18,Mathematics/AMEP,,cs/ds,53715,43.0731,-89.4012,Maybe,pineapple,cat,No,early bird,Maybe,Sing - Ed Sheeran
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,18,Science: Biology/Life,,Data Science,53703,37.4419,-122.143,Maybe,Other,dog,No,no preference,Yes,2516 by Luna Li
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,20,Engineering: Biomedical,,,53711,37.7749,122.4194,No,mushroom,dog,Yes,night owl,No,Borderline by Tame Impala
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,18,Data Science,,Economics,53703,3.1319,101.6841,Yes,pineapple,cat,No,night owl,Yes,Halfheartedly by The Rare Occasions
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,20,Engineering: Biomedical,n/a,n/a,53715,42.3601,-71.0589,No,pepperoni,dog,Yes,night owl,Maybe,28 by Zach Bryan - maybe recency bias but I love that song
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,18,Engineering: Mechanical,,,53706,46.432,6.909,No,sausage,dog,No,night owl,Maybe,Baby Come Back - Player
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,20,Engineering: Mechanical,,,53715,43.0731,-89.4012,No,pepperoni,dog,Yes,early bird,No,"Hardwood Floors, Charles Wesley Godwin"
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,20,Data Science,,Statistics,53703,44.499,11.3276,Yes,pepperoni,cat,Yes,night owl,Yes,Untitled 06 by Kendrick Lamar
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,18,Engineering: Industrial,,,53706,13.7563,100.5018,No,sausage,cat,No,night owl,Yes,Bohemian Rhapsody - Queen
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53703,30.2672,-97.7431,No,pepperoni,dog,No,early bird,No,I don't have a favorite 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,19,Data Science,,"Economics, Health Policy",53715,47.6137,47.6137,Yes,basil/spinach,dog,No,early bird,Maybe,Lithonia by Childish Gambino
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,21,Computer Science,,,53703,52.3756,4.8843,No,pepperoni,dog,Yes,night owl,Yes,Rock with You by Michael Jackson
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,18,Engineering: Mechanical,,,53706,41.3851,2.1734,Maybe,pepperoni,dog,Yes,night owl,No,minimal by ROLE MODEL
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,21,Business: Finance,,business: risk management ,53703,22.3964,114.1095,No,basil/spinach,cat,No,no preference,No,Like the Movies- Laufey
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,18,Engineering: Mechanical,,,53715,-8.3405,115.0919,No,mushroom,cat,Yes,early bird,No,belong together- Mark Ambor
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,19,Data Science,,"Economics
+
+ ",53703,51.5957,-2.0605,Yes,pepperoni,dog,No,night owl,Maybe,Jamming 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,19,Data Science,,Economics,53703,42.3601,71.0589,Yes,basil/spinach,dog,No,night owl,No,Viva La Vida by Coldplay
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,48.8566,2.3522,No,pineapple,dog,No,night owl,Yes,Shores of Easy by Royksopp
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Mechanical,,,53726,40.4168,-3.7038,No,sausage,dog,Yes,early bird,No,Amsterdam - Guster
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,18,Engineering: Biomedical,,,53715,40.9916,28.8512,No,Other,dog,No,night owl,Yes,Fly Away - Lenny Kravitz
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,18,Other (please provide details below).,Information Science,Scandanavian Studies,53076,36109000,-94.1239,No,sausage,dog,No,night owl,Maybe,Hell's Coming With Me: Poor Man's Poison
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,22,Engineering: Industrial,,,53719,43.7509,-87.7129,No,sausage,cat,No,no preference,Maybe,feather by sabrina carpenter
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,19,Mathematics/AMEP,,,53558,43.07,-89.4,No,Other,dog,No,early bird,Yes,"Heroes, David Bowie"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,18,Data Science,,Business: Finance,53706,1.3521,103.8198,Yes,pepperoni,dog,No,night owl,Yes,"Mastermind, Deltron 3030"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,19,Statistics,,,53703,39.9042,116.4074,Yes,pineapple,cat,No,night owl,No,Show you
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,19,Engineering: Mechanical,,,53703,34.752,135.4582,Maybe,pepperoni,dog,No,night owl,Yes,Shut Up my moms calling - Hotel Ugly
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,20,Other (please provide details below).,Psychology,Information Science,53703,41.8781,-87.6298,No,pepperoni,dog,No,night owl,Yes,"Ventura Highway - America, George Martin "
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Industrial,,,53703,41.8781,-87.6298,No,pepperoni,dog,Yes,no preference,No,A.M. Radio- The Lumineers
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,19,Data Science,na,na,53703,43.0731,-89.4012,Yes,pepperoni,neither,Yes,night owl,Maybe,Flags by Coldplay
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,20,Other (please provide details below).,Economics,,53703,43.0731,-89.4012,Maybe,pepperoni,dog,No,no preference,Maybe,7 summers morgan wallen
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Industrial,,,53706,40.4168,-3.7038,No,sausage,dog,Yes,night owl,Yes,"""hey, honey""
+
+By The 502's"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,19,Data Science,,,53706,43.0411,-87.9094,Yes,pepperoni,dog,No,night owl,Maybe,You're Not The One by Sky Ferreira
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,18,Data Science,,Geography,53706,37.54,127,Yes,pineapple,cat,No,night owl,Yes,Marlboro Nights by Lonely God
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,20,Data Science,I am also information sciences,none,53711,41.8781,87,Maybe,pepperoni,dog,No,night owl,Yes,Anything one direction
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,19,Science: Other,Astrophysics,Data Science,53715,21.3069,-157.8583,Yes,pepperoni,cat,No,no preference,Maybe,Too Many Nights - Metro Boomin
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53703,26.142,-81.7948,No,sausage,cat,No,early bird,Maybe,Dreadlock Holiday - 10cc
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Data Science,,,95118,36.5525,-121.9244,Yes,sausage,cat,No,night owl,Yes,I Had Some Help - Post Malone
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,20,Engineering: Biomedical,,,53711,45.1,-87.2,No,basil/spinach,dog,No,night owl,Maybe,"Back Pocket, Vulfpeck"
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Computer Science,,,53706,64.1265,-21.8174,Maybe,Other,cat,No,night owl,Yes,White Ferrari - Frank Ocean
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53703,43.7466,-87.7214,No,pepperoni,dog,No,night owl,Yes,Cars - Gary Numan
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,18,Computer Science,,Data Science Certificate,53706,27.9656,82.7959,Maybe,macaroni/pasta,dog,Yes,night owl,Yes,"NO preferences, will listen to anything that is not country music and taylor swift"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC003,No,19,Data Science,,Neurobiology,53715,30.2672,-97.7431,Maybe,mushroom,dog,Yes,early bird,Yes,September - Earth Wind and Fire
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC003,Yes,18,Data Science,,,53703,43.8537,-69.591,Yes,pepperoni,dog,No,night owl,Yes,"World, Hold On - Fisher Rework"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53715,45.207,-93.21,Maybe,pepperoni,dog,No,night owl,No,"""Under You"" - Foo Fighters"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,18,Data Science,N/A,N/A,53706,51.9244,4.4777,Yes,sausage,dog,No,no preference,Yes,Out of the Woods by Taylor Swift
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,18,Data Science,,,53706,17.385,78.4867,Yes,Other,dog,No,early bird,No,Sober by Lorde
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,18,Statistics,,,53706,43.1117,-88.5011,Maybe,sausage,dog,Yes,no preference,Maybe,Call Me - Luke Combs
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC001,No,20,Science: Biology/Life,Biology,DS,53703,28.943,122.0286,Maybe,pineapple,neither,No,night owl,Maybe,"Evergreen
+
+-Omar Apollo"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,18,Other (please provide details below).,Biochemistry,Data Science,53706,40.7608,-111.891,Yes,macaroni/pasta,cat,No,early bird,No,"Let The Light In, Lana Del Rey"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,21,Other (please provide details below).,My Primary major is Economics. ,"I am triple majoring in Economics, Political Science, and History. ",53703,39.9042,116.4074,No,sausage,dog,No,no preference,No,"Another brick in the wall by Pink Floyd
+The Scientist/Viva La Vida by Cold Play"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,20,Data Science,,,53713,13.6831,100.5078,Yes,sausage,dog,No,night owl,Yes,"White Iverson, Post Malone"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,18,Engineering: Mechanical,,Viola Performance.,53706,43.7696,11.2558,No,sausage,neither,Yes,night owl,Yes,I will not bow - breaking benjamin
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,21,Science: Other,Psychology,,53703,41.8781,-87.6298,No,basil/spinach,dog,Yes,night owl,Yes,You are the best thing - ray lamontagne
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,20,Statistics,,,53715,35.0116,135.768,Maybe,mushroom,dog,No,early bird,Yes,"Hallucinogenics
+
+Matt Maeson/Lana Del Rey"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,19,Data Science,,,53715,34.8796,-76.8707,Yes,basil/spinach,dog,No,no preference,Maybe,"Oklahoma Smokeshow by Zach Bryan
+
+Cover Me Up by Morgan Wallen"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Science: Biology/Life,,,53703,48.8566,2.3522,Yes,pineapple,dog,Yes,night owl,Yes,Fearless - Taylor Swift
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Mechanical,,,53703,30.2741,120.1551,No,mushroom,cat,No,night owl,No,"bohemian rhapsody
+
+by queen"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,18,Data Science,,,53706,41.8967,12.4822,Yes,none (just cheese),dog,Yes,early bird,Yes,"Francis Forever, Mitski
+
+505, Arctic Monkeys
+
+Hotel California, Eagles"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,19,Data Science,,,53706,40.687,-73.97,Yes,pepperoni,cat,No,no preference,No,august by Taylor Swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,18,Science: Biology/Life,,Data Science,53706,47.6032,-122.3303,Yes,pepperoni,dog,Yes,early bird,Yes,28 Zach Bryan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,No,19,Engineering: Mechanical,,,53711,37.4,-122,No,pepperoni,dog,Yes,early bird,Yes,springsteen eric church
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Mechanical,,,53716,43.0745,-89.3812,No,pineapple,dog,Yes,early bird,Yes,
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,20,Other (please provide details below).,Personal Finance: Financial Planning,Certificate in Data Science,53703,40.7128,-74.006,Maybe,pepperoni,dog,No,night owl,No,28 Zach Byran
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,20,Other (please provide details below).,Economics ,Political Science,53703,51.5074,-0.1278,No,pepperoni,dog,Yes,no preference,Yes,August - Taylor Swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,19,Other (please provide details below).,Psychology,Data Science,53703,41.4604,-71.1892,Yes,pepperoni,dog,Yes,early bird,No,Silver Lining by Mt Joy
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,20,Science: Biology/Life,n/a,Data Science ,53711,37.7749,122.4194,Yes,Other,neither,No,no preference,Maybe,Telegraph childish Gambino 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,19,Business: Finance,n/a,"Risk Management, Data Science ",53703,41.8781,-87.6298,Maybe,pepperoni,dog,No,night owl,Yes,No one Knows by Brent Faiyaz
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,21,Data Science,,"Economics, Information Science, Strategic Communication",53703,31.299,120.5853,Yes,sausage,cat,Yes,early bird,No,Good Morning - Kanye West
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,20,Other (please provide details below).,Consumer Behavior & Marketplace Studies,N/A,53703,41.9028,12.4964,No,sausage,dog,Yes,early bird,Maybe,All of the Lights - Kanye West
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,No,19,Engineering: Other,Aerospace engineering,N/A,53711,44.84,-93.25,No,pepperoni,dog,No,no preference,Yes,"Hold on, were going home - Drake"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,19,Engineering: Mechanical,,,53703,42.355,288.9418,No,pineapple,cat,No,night owl,Yes,Song 2 - Blur
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,20,Engineering: Industrial,,,53703,26.4847,-81.8608,No,pepperoni,cat,No,early bird,Yes,Tongue Tied by Grouplove 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,18,Business: Actuarial,,,53706,37.7749,-122.4194,Maybe,basil/spinach,dog,No,night owl,Yes,Linger - The Cranberries
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,No,20,Other (please provide details below).,economics,math,53715,43.0731,-89.4012,No,sausage,dog,No,no preference,Yes,Die for you
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,21,Science: Other,,,53715,43.0731,-89.4012,No,sausage,cat,No,night owl,Yes,Through Patches of Violet by Mili
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,18,Engineering: Mechanical,,,53706,47.6062,122.3321,No,pepperoni,cat,No,no preference,Yes,Be Sweet - Japanese Breakfast
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,21,Science: Other,Economics,Political Science Major,0,1,1,1,0,0,0,0,0,1
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,18,Other (please provide details below).,Undecided,,53706,40.7532,-73.9837,Yes,pepperoni,dog,No,night owl,Yes,LOVE - Kendrick Lamar
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Computer Science,N/A,N/A,53706,47.6055,-122.0356,Maybe,basil/spinach,dog,No,no preference,Maybe,Lost In Yesterday - Tame Impala
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,20,Computer Science,,,53703,40.7523,-73.9778,No,green pepper,dog,No,night owl,Yes,Baby Come Back by Player
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Engineering: Industrial,,,53706,41.5027,-82.7293,No,pineapple,dog,Yes,early bird,Yes,Margaritaville by Jimmy Buffett 
+COMP SCI 319:LEC002,LEC002,No,23,Business: Finance,,,53715,43.0731,-89.4012,Maybe,pineapple,neither,No,night owl,Yes,Right here waiting-Richard Marx
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,Yes,18,Data Science,I am thinking about both data science and community and nonprofit leadership.,,53706,37.4451,-122.1604,Maybe,pepperoni,cat,Yes,night owl,Maybe,Julia by Mt. Joy
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,Yes,20,Engineering: Mechanical,.,.,53703,35.662,139.7038,No,pepperoni,dog,No,early bird,Maybe,Barbie World by Ice Spice
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Industrial,,,53706,33.427,-117.612,Maybe,pepperoni,dog,Yes,early bird,Maybe,I'd Rather Be With You - Bootsy Collins
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,20,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53703,48.8566,2.3522,No,pineapple,dog,No,no preference,Yes,Barbie World by Ice Spice
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,Yes,19,Engineering: Mechanical,,,53706,23.7772,90.3995,No,none (just cheese),cat,Yes,night owl,Yes,Fever Dua Lipa and Angele
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,No,19,Mathematics/AMEP,,Statistics,53703,39.9042,116.4074,No,pineapple,dog,No,night owl,Maybe,"Love Story, Taylor Swift"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Mechanical,,,53715,25.8784,-97.5035,No,none (just cheese),dog,Yes,night owl,Maybe,"PRIDE, kendrick lamar"
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,18,Data Science,,Computer Science,53706,51.5074,-0.1278,Yes,basil/spinach,cat,Yes,no preference,No,Impurities by LE SSERAFIM
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,19,Engineering: Mechanical,,,53715,43.815,-91.2561,No,none (just cheese),dog,No,night owl,No,Oysters In My Pocket by Royel Otis
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,20,Data Science,,,53702,31.9031,35.1952,Yes,pineapple,neither,No,night owl,Yes,Dreamcatcher - MetroBoomin
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,19,Engineering: Mechanical,,,53715,39.9784,-86.118,No,pepperoni,dog,Yes,early bird,Yes,"Redrum 
+
+21 Savage"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,19,Engineering: Biomedical,,,53715,41.8967,12.4822,No,pepperoni,dog,No,early bird,Maybe,Open the gate -Zach Bryan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,No,21,Science: Biology/Life,,,53703,18.1497,-65.8275,No,sausage,cat,Yes,early bird,Yes,"""My Favorite Part"" Mac Miller"
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Data Science,,,53706,35.69,139.69,Yes,Other,dog,No,night owl,No,Disturbia - Rihanna
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Other (please provide details below).,I'm an art major who needs this class for the Video Game Design certificate,,53706,47.6062,-122.3321,No,none (just cheese),cat,Yes,night owl,Yes,Butterfly by Crazy Town
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,18,Data Science,,,53706,31,121,Yes,pineapple,dog,No,no preference,Maybe,Lover  Tarlor Swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,20,Business: Other,"Marketing, certificate in Data science",,53715,45.1114,87.0471,Maybe,sausage,dog,No,no preference,Yes,"Anything Eagles, if you are going to play for a crowd, just play Take it easy. "
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,17,Data Science,,Biology,53706,36,140,Yes,pepperoni,cat,No,night owl,Yes,"""I Can See"" by Mac Miller"
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,20,Data Science,,,53703,35.662,139.7038,Yes,pepperoni,dog,Yes,early bird,Maybe,Summer Days by Anri
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,19,Engineering: Biomedical,,,53703,45.4522,-92.4546,No,none (just cheese),cat,Yes,night owl,Maybe,Got Me Started by Troye Sivan
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,18,Data Science,,,53706,41.2726,-82.0545,Yes,none (just cheese),dog,No,night owl,Maybe,Lucky Radiohead
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,20,Other (please provide details below).,Economics,,53703,40.7128,74.006,No,pepperoni,dog,Yes,night owl,Yes,dreams fleetwood mac
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,No,sausage,dog,No,night owl,No,"Hotel California, The Eagles"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,19,Business: Information Systems,,Business: Finance,53703,48.8566,2.3522,No,mushroom,dog,No,night owl,Yes,Sister Golden Hair by America
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,57303,44.1858,88.4626,No,macaroni/pasta,dog,No,,Maybe,Still Beating Mac Demarco
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,19,Engineering: Mechanical,,,53706,41.8781,-87.6298,No,pepperoni,dog,No,night owl,Yes,mr rager kid cudi
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,19,Data Science,,,53703,46.6863,7.8632,Yes,green pepper,dog,No,night owl,No,Sunburns by West 22nd
+COMP SCI 319:LEC002,LEC002,No,24,Statistics,,,53703,40.0583,-74.4057,No,pineapple,neither,No,night owl,Yes,Never Gonna Give you up Rick Astley
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,No,19,Business: Actuarial,None,Data Science,53703,41.8781,-87.6298,Maybe,pepperoni,dog,No,early bird,Maybe,"Hurricane, Luke Combs"
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC001,No,20,Data Science,,Biochemistry,53715,43.0722,89.4008,Yes,pepperoni,dog,Yes,early bird,No,Classical music.
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,No,19,Engineering: Biomedical,,,53715,21.8765,-159.4538,No,pineapple,dog,Yes,early bird,No,Good Days by SZA
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Mechanical,,,53706,45.1565,-87.172,No,basil/spinach,dog,Yes,early bird,Yes,"Three Little Birds, Bob Marley"
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,No,19,Engineering: Biomedical,,,53711,,,No,pepperoni,dog,No,night owl,Yes,Kiss Me - Sixpense None The Richer
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,Yes,20,Business: Finance,,,53703,34.1478,118.1445,No,sausage,neither,No,night owl,Yes,"Dream, Fairytale, Fantasy - A$ap Ferg & Brent Faiyez"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,18,Mathematics/AMEP,,maybe computer science or data science,53706,47.3769,8.5417,Maybe,sausage,neither,No,early bird,No,The Night by Avicii
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,21,Business: Other,Risk Management and Insurance,n/a,53703,48.1374,11.5755,Maybe,Other,dog,No,no preference,No,Lessons in Love - Level 42
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,18,Statistics,,,53706,41.8781,-87.6298,No,green pepper,cat,No,night owl,Yes,Sweater Weather by The Neighbourhood
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,No,21,Other (please provide details below).,Economics,,53703,41.8781,-87.6298,Yes,pepperoni,cat,No,no preference,Yes,Dancing Queen ABBA
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,No,19,Data Science,,,53711,25.033,121.5654,Yes,basil/spinach,dog,No,night owl,Yes,Adventure of a Lifetime - Coldplay
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,18,Engineering: Mechanical,,,53706,47.5573,13.647,No,pepperoni,cat,No,night owl,No,Mr. Rager by Kid Cudi
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,20,Engineering: Mechanical,N/A,N/A,53715,44.8616,-92.6243,No,pineapple,cat,No,early bird,Yes,"Misery Business, Paramore"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,20,Other (please provide details below).,Economics,,53703,3.0733,101.5185,Maybe,pepperoni,cat,No,night owl,Yes,Niki - Strong Girl
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,21,Engineering: Other,Electrical Engineering,,53703,4.2105,101.9758,No,pepperoni,cat,No,night owl,No,August- Taylor Swift
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Data Science,,,53706,40.7128,-74.006,Yes,pineapple,cat,Yes,early bird,Yes,See You Again by Kali Uchis and Tyler the Creator
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,19,Business: Finance,,Accounting,53715,89.4008,43.0722,No,macaroni/pasta,dog,Yes,night owl,No,California dreaming
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,19,Engineering: Industrial,,,53715,93.0427,44.848,No,none (just cheese),dog,Yes,night owl,Yes,East Side of Sorrow by Zach Bryan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,19,Engineering: Mechanical,,,53703,39.9498,-75.157,No,sausage,dog,No,night owl,Yes,"Bulls on Parade, Rage Against the Machine"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,No,19,Statistics,,,53706,38.9784,76.4922,Maybe,pepperoni,dog,Yes,night owl,No,"Sultans of Swing, Dire Straits"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,18,Business: Information Systems,,,53706,44.5133,-88.0158,Maybe,pepperoni,cat,No,early bird,Maybe,"""Limelight"" by Rush"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,No,19,Engineering: Mechanical,,,53715,31.2304,,Maybe,mushroom,cat,No,night owl,Yes,Attention by newjeans
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,20,Engineering: Industrial,,,53703,47.2597,11.4004,No,sausage,cat,No,no preference,Maybe,a horse with no name
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,19,Science: Biology/Life,,"I am getting a certificate in data science, life science communications",53715,43.0726,-89.4025,No,pepperoni,dog,Yes,night owl,Yes,Free Now- Gracie Abrams
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,No,,Statistics,,,53703,60,24,Maybe,sausage,neither,No,night owl,Maybe,Slave Knight Gael-北村友香
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,18,Business: Actuarial,,,53706,35.6895,139.6917,No,pepperoni,dog,No,no preference,Yes,"Seven Nation Army, the white stripes"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,18,Computer Science,,Math,53706,42.3601,71.0589,Maybe,sausage,dog,Yes,night owl,Yes,Wake Up Call - Maroon 5
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,19,Engineering: Mechanical,,,53706,44.7663,-91.4407,No,macaroni/pasta,dog,Yes,night owl,Maybe,Blue Aint Your Color - Keith Urban
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,No,21,Other (please provide details below).,Economics,,53703,59.3293,18.0686,No,sausage,dog,Yes,night owl,Yes,Mr Blue Sky - Electric Light Orchestra
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,Yes,18,Data Science,,Second major is economics,53715,41.8859,12.4863,Yes,pepperoni,dog,Yes,early bird,Maybe,Black by Pearl Jam
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,18,Other (please provide details below).,Econ,Data science,53703,41.1408,-73.2613,Yes,sausage,dog,Yes,night owl,Yes,Small Worlds Mac Miller
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,18,Data Science,,,53703,47.0455,8.308,Yes,sausage,dog,Yes,night owl,Yes,Black Moon Rising - Black Pumas
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,No,18,Data Science,N/A,Economics ,53703,55.6761,12.5683,Yes,pineapple,cat,Yes,no preference,Yes,Slow Dance in A Parking Lot - Thomas Rhett 
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,18,Mathematics/AMEP,,,53706,41.8781,-87.6298,Yes,sausage,cat,Yes,night owl,Yes,Cherub Rock by The Smashing Pumpkins
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Data Science,,"Data Science, Economics",53706,33.8621,-118.3962,Yes,sausage,dog,Yes,early bird,Maybe,Second Hand News - Fleetwood Mac
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Biomedical,,,53715,25.7617,-80.1918,Maybe,pepperoni,dog,Yes,night owl,Maybe,Two Dozen Roses - Shenandoah
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,54302,43.0731,-89.4012,No,pepperoni,dog,No,early bird,No,Charlie Puth
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,20,Statistics,,botany,53703,37.7749,-122.4194,No,sausage,neither,Yes,no preference,Yes,Battle symphony Linkin Park
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,Yes,20,Computer Science,,,53703,41.8781,-87.6298,No,mushroom,cat,Yes,night owl,Yes,Speaking Terms by Snail Mail
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Other (please provide details below).,Undecided,,53703,39.1905,-77.0657,No,pepperoni,dog,Yes,no preference,Yes,Black Star- Radiohead
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,19,Statistics,,"Data Science, Math",55129,43.0731,-89.4012,Yes,sausage,dog,Yes,early bird,No,Here comes the sun - Beatles
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,Yes,19,Data Science,,,53703,38.63,-90.2,Yes,pepperoni,dog,No,night owl,Yes,Revival by Zach Bryan
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Other,Computer Engineering,,53706,52.3676,4.9041,No,green pepper,dog,No,night owl,No,All Night by Charli XCX
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,20,Data Science,,Economics. I am double majoring in data science and economics.,53715,42.3601,71.0589,Yes,pepperoni,dog,Yes,night owl,Maybe,I don’t really have a favorite song in particular but I have been listening to a lot of J. Cole.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Other (please provide details below).,Political Science/ Economics,,53706,59.3346,18.0632,Maybe,sausage,dog,No,early bird,No,Hourglass- The Stews
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,No,sausage,cat,Yes,night owl,Maybe,Holiday by Green Day
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,19,Data Science,,,53715,31.2304,121.4737,Yes,sausage,cat,No,night owl,Yes,kingston - faye webster
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,,,53703,42.2952,-71.141,No,none (just cheese),dog,Yes,night owl,Yes,"Let it Happen, tame Impala"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,Yes,18,Data Science,,,53706,46.447,6.949,Yes,pineapple,dog,Yes,early bird,No,Snow by Zach Bryan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,18,Other (please provide details below).,My applied major is consumer behavior.,computer science or datascience.,53706,64,26,Maybe,none (just cheese),cat,No,night owl,Yes,"Piano in the sky by Winona Oak
+
+Taylor swift's songs"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,20,Engineering: Mechanical,,,53726,44.5133,-88.0133,No,pepperoni,dog,Yes,night owl,Yes,Hell of a Way to Go by Riley Green 
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,No,19,Data Science,,,53715,43.1019,-87.8957,Yes,pepperoni,dog,No,no preference,Maybe,"Trap Queen, Fetty Wap"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,19,Other (please provide details below).,Philosophy ,Mathematics,53703,25.8195,-80.1297,Maybe,basil/spinach,cat,Yes,no preference,Yes,Brandy (Through the Looking Glass)
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,20,Business: Other,,,53703,45.3589,-80.2386,No,sausage,dog,Yes,early bird,Yes,Electric Feel - MGMT
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,21,Statistics,,Biology,53703,51.5074,-0.1278,No,pepperoni,dog,No,night owl,Yes,"""love song"" by Taylor Swift"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,No,18,Data Science,,,53706,45.4408,12.3155,Yes,sausage,cat,No,night owl,Yes,Last Nite - The Strokes
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,20,Engineering: Industrial,,,53715,40.3761,-105.5237,No,none (just cheese),dog,No,night owl,Maybe,Misses Dominic Fike
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,19,Engineering: Biomedical,,,53715,48.85,2.34,No,pepperoni,cat,No,early bird,No,My Lady of Mercy by The Last Dinner Party
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,18,Data Science,,Chinese,53706,42.3601,-71.0589,Yes,sausage,dog,No,no preference,Maybe,White Sky - Vampire Weekend
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,20,Engineering: Industrial,,,53711,44.0835,-87.6585,No,pepperoni,dog,No,early bird,Yes,Your Love by The Outfield 
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,20,Business: Information Systems,n/a,Comp Sci,53703,44.8113,-91.4985,No,mushroom,dog,No,night owl,Yes,HoodbyAir - Playboi Carti
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,20,Science: Physics,,history and business ,53715,51.2907,0.0625,No,sausage,dog,No,night owl,Maybe,right now is wildflower by billie eillish 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,Yes,19,Engineering: Mechanical,,,53703,59.3293,18.0686,No,basil/spinach,dog,Yes,early bird,Maybe,"""Ain't No Rest for the Wicked"" by Cage The Elephant"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,,Science: Biology/Life,,Data Science,53706,41.8967,12.4822,Yes,basil/spinach,dog,No,night owl,Yes,"""Autobahn"" by Blessing Offor"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,19,Business: Other,Consumer behavior and marketplace studies ,Communications,53719,40.7128,-74.006,No,mushroom,dog,No,night owl,Yes,The Color Violet - Tory Lanez
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53715,30.2944,-87.5736,No,sausage,dog,No,no preference,No,Wish You Were Here - Pink Floyd
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,Yes,22,Engineering: Biomedical,,,53521,47.6062,-122.3321,No,pepperoni,cat,Yes,early bird,No,Missing You - The Vamps 
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,No,21,Business: Information Systems,,"Marketing, Chinese",53703,52.3702,4.8952,No,pepperoni,cat,Yes,night owl,Yes,"Let it Happen, Tame Impala"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,20,Statistics,,Data Science,53715,46.5348,-87.3984,Yes,Other,dog,No,night owl,Yes,She's Always a Woman - Billy Joel
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,19,Engineering: Biomedical,,,53711,33.4482,-112.0726,No,pepperoni,dog,Yes,night owl,No,The Calendar by Panic At The Disco
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,18,Engineering: Mechanical,N/A,None,53706,43.6275,-89.7661,Maybe,sausage,dog,No,no preference,No,"One Night in Bangkok (original single version / from ""Chess"") by Murray Head"
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,No,19,Engineering: Mechanical,,,53703,32.0844,34.7856,No,Other,dog,Yes,early bird,Yes,By and By - Caamp
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,Yes,19,Engineering: Industrial,,,53715,37.7749,-122.4194,No,basil/spinach,dog,Yes,early bird,Maybe,Blowing Smoke by Gracie Abrams
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,No,21,Mathematics/AMEP,.,Economics,53706,875597,-115.3727,No,basil/spinach,dog,Yes,early bird,Yes,Wake Up Alone by Amy Winehouse
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,Yes,19,Engineering: Mechanical,.,.,53715,45.1873,-93.1846,No,sausage,dog,Yes,night owl,Yes,"Castle on the hill, Ed Sheeran "
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,Yes,,Statistics,,,53703,40,116,Maybe,sausage,neither,No,night owl,Yes,RED-Taylor Swift
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,19,Engineering: Biomedical,,,53715,16.0544,108.2022,No,pineapple,cat,No,night owl,Yes,CHIHIRO by Billie Eilish
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,18,Other (please provide details below).,Undecided/Undeclared ,,53706,40.7128,-74.006,Yes,pineapple,dog,Yes,night owl,Maybe,Everywhere by Fleetwood Mac
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Data Science,,,53706,48.8566,2.3522,Yes,pepperoni,dog,Yes,night owl,Yes,"""Prom"" by SZA"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,18,Engineering: Industrial,,,53706,42.5113,-87.8276,No,macaroni/pasta,dog,No,no preference,Yes,"Tore up, Don Toliver
+
+ "
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,21,Other (please provide details below).,Economics,,53711,51.1785,-115.5743,No,mushroom,dog,No,early bird,No,Sun to me -Zach Bryan
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,18.5,Data Science,,International Studies,53706,46.0193,7.746,Yes,Other,cat,No,no preference,No,No Hands by Joy Crookes
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,17,Data Science,,,53715,35.687,139.7495,Yes,Other,neither,No,no preference,Yes,Thumbs by Sabrina Carpenter
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,No,19,Engineering: Biomedical,N/A,Mathematics,53706,40.015,-105.2705,No,pepperoni,dog,No,night owl,No,Clocks- Coldplay
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,Yes,20,Engineering: Biomedical,,,53706,,-89.4012,No,sausage,dog,Yes,early bird,No,Hey Ya by Outkast
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Biomedical,,,53703,21.3069,-157.8583,Maybe,pepperoni,cat,Yes,night owl,Yes,"Actual Favorite Songs:
+
+Enter the Mirror - Les Rallizes Denudes or The Art of Fugue Contrapunctus IX - Evgeni Koroliov
+
+Lecture Friendly (?):
+
+Love Will Tear Us Apart - Joy Division"
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Mechanical,,,53707,43.188,-89.46,No,pepperoni,dog,Yes,no preference,Yes,A Bar Song-Shaboozey
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,No,18,Engineering: Mechanical,,,53706,20.8783,-156.6825,No,pepperoni,dog,No,night owl,Yes,"Burn, Burn, Burn - Zach Bryan"
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53706,51.5074,-0.1278,No,pepperoni,dog,Yes,night owl,Yes,Runaway By Kanye West
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Computer Science,,,53706,20.0045,57.5629,No,pineapple,dog,No,night owl,Yes,
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Other (please provide details below).,Politcal science,International Studies,53703,41.9,12.5,No,pepperoni,dog,No,night owl,No,Let it Happen by Tame impala
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,20,Science: Physics,,Applied Mathematics,57315,45.5017,-73.5673,No,sausage,dog,No,early bird,Yes,Joe Strummer - Get Down Mosses
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Industrial,,,53715,42,-71,No,pineapple,dog,Yes,early bird,No,Virtual Insanity by Jamiroquai
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,18,Business: Actuarial,,,53706,54.5973,-5.9301,Maybe,basil/spinach,dog,Yes,early bird,No,You Can Call Me Al - Paul Simon 
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,Yes,17,Data Science,,,53706,4163.385,2.1734,Maybe,green pepper,dog,No,no preference,Yes,Bad Habit by Steve Lacy
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Science: Biology/Life,,Data science ,53706,12.9716,77.5946,Yes,Other,cat,No,night owl,Yes,Nancy mulligan - Ed Sheeran 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,Yes,19,Engineering: Industrial,,,53711,44.7388,-92.6754,Maybe,pepperoni,neither,No,early bird,Yes,Something That I Want by Grace Potter
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,18,Data Science,,maybe considering to double major in Environmental Studies / Economics. ,53706,59,151,Yes,pepperoni,dog,No,night owl,No,Nonsense by Sabrina Carpenter
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,18,Computer Science,,,53706,44.0277,-92.7521,Maybe,pepperoni,dog,No,night owl,Yes,"Sing About Me, I'm Dying of Thirst - Kendrick Lamar"
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,19,Business: Information Systems,Economics ,Data Science ,53703,43.2994,74.2179,Yes,Other,dog,Yes,night owl,Yes,"What once was, Her's "
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,20,Engineering: Mechanical,,,53703,45.63,-89.41,No,pepperoni,cat,Yes,early bird,Yes,Daylight Harry Styles
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Other,,,53706,56.4131,-5.4731,No,none (just cheese),dog,No,night owl,Yes,Budapest - George Ezra
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,No,20,Statistics,,,53703,39.9042,116.4074,Maybe,pepperoni,cat,No,early bird,No,Love or lust 24Goldn
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,No,19,Engineering: Mechanical,,,53715,40.7,-73.9,No,pepperoni,dog,No,no preference,Yes,Breeze dr. Dog
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,19,Other (please provide details below).,Information Science!,N/A,53703,53.3498,-6.2603,Maybe,none (just cheese),cat,No,night owl,Yes,My love mine all mine by Mitski.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,19,Business: Information Systems,,,53726,42.6813,-89.0269,No,pineapple,cat,No,night owl,No,Joy of my life - Chris Stapleton
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,18,Engineering: Industrial,,Data Science,53706,25.7617,-80.1918,Yes,pepperoni,dog,No,early bird,Maybe,Mr. Brightside - The killers
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,Yes,21,Mathematics/AMEP,,political science,53703,43.0389,-87.9065,No,basil/spinach,dog,Yes,early bird,No,Spice up your life by the Spice Girls 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,18,Engineering: Industrial,,,53706,47.2627,11.3947,No,pineapple,dog,Yes,early bird,Yes,Viva La Vida by Coldplay
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,19,Engineering: Biomedical,,,53715,45.8713,-89.7116,Maybe,basil/spinach,dog,Yes,night owl,Yes,28 by Zach Bryan
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,No,pepperoni,dog,No,no preference,Maybe,Where I'm From - Digable Planets
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,19,Data Science,,,53715,41.8781,-87.6298,Yes,pepperoni,cat,No,no preference,Yes,Because of You by Ne-Yo
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,18,Business: Finance,N.A,N.A,53706,48.8575,2.3514,Maybe,none (just cheese),dog,Yes,early bird,Yes,Killer Queen- Queen
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,18,Engineering: Mechanical,,,53706,35.6895,139.6917,No,sausage,dog,No,night owl,Yes,Some Nights by fun.
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Biomedical,,,53703,47.6062,-122.3321,No,macaroni/pasta,dog,Yes,no preference,No,Dreams by Fleetwood Mac
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,Yes,19,Engineering: Mechanical,,,53726,43.0389,-87.9065,No,pepperoni,dog,Yes,night owl,Yes,I do not have the character to type it but it is by Masayoshi Takanaka.
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,18,Data Science,,,53726,36.1716,115.1391,Yes,mushroom,dog,Yes,night owl,Maybe,Becky G- Shower
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,Yes,18,Data Science,,,53706,30.2672,-97.7431,Yes,pepperoni,dog,No,night owl,No,94 Camry Music - femdot.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,18,Engineering: Biomedical,,,53715,41.4993,-81.6944,No,pineapple,cat,Yes,no preference,Yes,Dont Stop Believin - Journey
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,21,Engineering: Mechanical,,,53715,47.3537,8.5144,No,sausage,dog,No,night owl,Maybe,Diary of Jane-Breaking Benjamin
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,18,Data Science,,Jazz Studies ,53706,43.0495,88.0076,Yes,sausage,cat,No,night owl,No,Peg by Steely Dan
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,No,18,Mathematics/AMEP,,,53706,40.76,73.98,Maybe,pepperoni,dog,Yes,night owl,Yes,Runaway Baby - Bruno Mars
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,20,Data Science,,,53726,-33.9249,18.4241,Yes,green pepper,dog,No,night owl,Yes,"Fly, Lenny Kravtiz"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,No,18,Data Science,,Music Performance,53706,25.0343,-77.3963,Yes,macaroni/pasta,dog,Yes,night owl,Yes,Casualty by Lawrence
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,18,Data Science,,,53706,35.7813,-78.6417,Yes,pepperoni,dog,No,early bird,Maybe,I like anything Zach Bryan. I also like Missed Call by Treaty Oak Revival. 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,No,20,Other (please provide details below).,Neurobiology,,53703,44.9437,-93.0943,No,pepperoni,dog,No,early bird,Maybe,New Perspective by Noah Kahan
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Business: Finance,N/A,"Data Science, Economics: Mathematical Emphasis",53715,40.715,-74,Yes,pepperoni,dog,Yes,no preference,Maybe,"Magic in the Hamptons, Social House"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,18,Engineering: Mechanical,,,53706,19.076,72.8777,No,green pepper,cat,No,early bird,No,"American Boy - Kanye and Estelle
+
+ "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,18,Engineering: Biomedical,,,53597,35.6895,139.6917,No,basil/spinach,dog,Yes,night owl,Maybe,Instagram by DEAN
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,18,Engineering: Industrial,,,53706,43.9941,-87.7005,No,pepperoni,dog,No,no preference,No,The Blonde by TV Girl
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Mechanical,,,53703,47.6204,-122.3493,Maybe,sausage,cat,No,night owl,Yes,"Baby I'm Back, The Kid Laroi"
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,18,Data Science,,,53706,29.8749,121.5375,Yes,mushroom,cat,Yes,night owl,No,"Pain is inevitable - Daniel Ceaser
+
+Stronger - Kanye West"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,18,Computer Science,,"Data Science, Finance",53706,43.9017,-79.2329,Yes,green pepper,dog,Yes,night owl,Yes,"""Sex, Drugs, Etc."" by Beach Weather"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,No,20,Engineering: Mechanical,,,53715,49.4387,1.0966,No,sausage,dog,Yes,early bird,Yes,Views- Drake
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,20,Other (please provide details below).,Economics,,53703,41.8781,-87.6298,No,none (just cheese),dog,No,early bird,Yes,happy
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,19,Statistics,,,53703,35.8617,104.1954,Maybe,pepperoni,cat,No,early bird,No,"Title: The truth that you leave
+
+Artis: Piano Boy"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,18,Science: Biology/Life,,,53706,10.1473,-85.4598,Maybe,green pepper,dog,Yes,night owl,Maybe,if only - the marias
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,Yes,18,Data Science,,,55125,23.0225,72.5714,Yes,basil/spinach,neither,Yes,night owl,Yes,Tera hone laga hoon - Atif Aslam
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC003,Yes,18,Data Science,,"Potentially computer science, engineering or math.",53706,40.6782,-73.9442,Yes,Other,dog,No,night owl,Yes,All the Time- Zach Bryan
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Engineering: Other,Engineering Mechanics,,53715,32.7833,79.932,No,pepperoni,dog,Yes,night owl,Yes,Here is Gone-Goo Goo Dolls
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Data Science,,,53703,9.9814,-85.6516,Yes,sausage,dog,Yes,no preference,Yes,Starting Over by Chris Stapleton
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,17,Engineering: Biomedical,,computer science,60047,42.197,88.0934,Maybe,mushroom,cat,No,early bird,No,where the wild things are luke combs
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,Yes,21,Other (please provide details below).,Economics,Data Science,53703,48.8566,2.3522,No,none (just cheese),dog,Yes,early bird,No,Panama by Sports
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,18,Engineering: Mechanical,,,53706,43.0722,89.4008,No,pepperoni,dog,Yes,night owl,Yes,Brazil by Declan McKenna
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Data Science,,Economics,53703,41.633,12.5095,Yes,pepperoni,dog,Yes,night owl,Yes,"trouble, cage the elephant"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,19,Data Science,,,53715,43.0731,-89.4012,Yes,pepperoni,dog,Yes,night owl,Yes,Clarity - John Summit
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,Yes,19,Engineering: Other,Engineering Mechanics,,53715,32.7833,-79.932,No,pepperoni,dog,Yes,night owl,Yes,Here is Gone-Goo Goo Dolls
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,20,Engineering: Industrial,,,53703,47.74,-90.33,No,pepperoni,dog,No,night owl,Yes,Apple Pie Travis Scott
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53406,-22.9068,-43.1729,No,pepperoni,dog,Yes,night owl,Yes,Pompeii
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,19,Engineering: Mechanical,,,53715,42.8101,-89.6355,No,sausage,dog,No,no preference,Maybe,Wagon Wheel
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,17,Data Science,,,53706,43.074,-89.4105,Yes,sausage,dog,No,night owl,Yes,No Type by Rae Sremmurd
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,No,19,Statistics,,,53703,42.3611,-71.0571,Maybe,green pepper,dog,Yes,early bird,No,Without Me by Eminem
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,18,Data Science,Data science,Computer Science,53715,44.8318,-93.1638,Yes,mushroom,cat,No,night owl,Maybe,Sundress by Asap Rocky
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,No,19,Data Science,,Cartography,53703,48.8566,2.3522,Yes,sausage,dog,No,night owl,Yes,I Got A Name by Jim Croce
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,18,Engineering: Biomedical,n/a,n/a,53760,40.7128,74.006,No,sausage,dog,No,night owl,Yes,Love Song- Lana del Rey
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53706,46.5197,6.6323,No,mushroom,cat,No,night owl,Yes,"""Like the Movies"" by Laufey"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,18,Engineering: Mechanical,,,53706,25,55,Maybe,pepperoni,dog,Yes,early bird,Yes,One last time
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,Yes,18,Business: Finance,,,53706,28.5355,77.391,No,pepperoni,cat,Yes,early bird,Maybe,Sky full of Stars by Coldplay 
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,Yes,19,Engineering: Mechanical,,,53703,44.95,-89.57,No,pepperoni,neither,No,night owl,Yes,He's a Pirate Klaus Badelt
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,19,Engineering: Other,,,53715,23.0225,72.5714,No,Other,neither,No,early bird,No,"Boy in the Bubble, Alec Benjamin"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,20,Data Science,N/A,Biochemistry ,53005,40.7128,-74.006,Yes,basil/spinach,dog,Yes,early bird,Maybe,"Alaska, Maggie Rogers"
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,18,Computer Science,,"Data Science, Statistics",53703,-33.8565,151.215,Yes,macaroni/pasta,cat,Yes,night owl,Yes,Mary on a Cross- Ghost
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,Yes,17,Engineering: Mechanical,,,53706,44.9436,-93.2149,No,pineapple,dog,Yes,no preference,Yes,U - Kendrick Lamar
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,No,22,Computer Science,,Math,53703,43.0731,-89.4012,No,pineapple,dog,No,night owl,Maybe,one day
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,Yes,18,Computer Science,,,53706,25.2048,55.2708,Maybe,pineapple,cat,No,night owl,Yes,Madonna - Kevin Abstract
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,Yes,20,Data Science,p,p,53703,25.6729,-100.3097,Yes,pepperoni,dog,No,no preference,Yes,Ive been in love - JUNGLE
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,Yes,20,Science: Physics,,Economics,53715,39.4821,-106.0487,No,macaroni/pasta,dog,No,early bird,Yes,Gillyweed by Drex Carter
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,Yes,20,Engineering: Mechanical,,,53703,41.9028,12.4964,No,pepperoni,cat,No,early bird,Maybe,Pursuit of Happiness - Kid Cudi
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,No,18,Engineering: Mechanical,,,53706,43.0289,-87.9722,No,pepperoni,dog,Yes,night owl,No,Not Likes Us - Kendrick Lamar
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,No,19,Engineering: Mechanical,,,53706,32.0499,118.766,Maybe,sausage,dog,Yes,no preference,Maybe,"Taylor Swift
+
+All too Well"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,No,19,Other (please provide details below).,Atmospheric and Oceanic Sciences ,Environmental Studies ,53706,19.64,-155.99,No,sausage,dog,Yes,early bird,No,One Dance - Drake 
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,19,Data Science,,,53715,31.2304,121.4737,Yes,mushroom,neither,Yes,early bird,No,
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,Yes,19,Mathematics/AMEP,,Economy,53715,30.04,31.2357,No,pineapple,neither,No,night owl,Yes,Operation Wild Scales -- Monster Siren
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,No,19,Engineering: Mechanical,,,53715,-22.9068,-43.1729,Maybe,pepperoni,cat,Yes,no preference,No,"Mr. Brightside by the Killers
+
+ "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,Yes,17,Engineering: Mechanical,,,53703,43.0731,-89.4012,No,pepperoni,cat,No,night owl,Yes,Stay with me - Miki Matsubara
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,Yes,18,Computer Science,,,53706,19.2826,-99.6557,Maybe,pineapple,cat,Yes,no preference,Yes,I bet on losing dogs by Mitski.
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,Yes,18,Business: Finance,,,53711,21.307,-157.858,Maybe,pepperoni,cat,No,no preference,Maybe,"Burn, Burn Burn - Zach Bryan"
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,Yes,18,Other (please provide details below).,"Computer Science
+
+ ","Data Science
+
+ ",53706,21.3069,-157.8583,Yes,pepperoni,dog,Yes,early bird,Yes,G.O.A.T. by Diljit Dosanjh
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,Yes,25,Computer Science,,,53703,35.1796,129.0756,No,sausage,dog,Yes,night owl,No,"Dog Days Are Over, Florence + The Machine"
-- 
GitLab