diff --git a/f23/.gitignore b/f23/.gitignore
index b79ed2b0f56a0d411374b09e0a205c577d4fafa3..50f6c9067d520658fc9d5b82dedf3b4043f1714d 100644
--- a/f23/.gitignore
+++ b/f23/.gitignore
@@ -1 +1,2 @@
-**/.ipynb_checkpoints/**
\ No newline at end of file
+**/.ipynb_checkpoints/**
+**/__pycache__/**
\ No newline at end of file
diff --git a/f23/Cole_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice_Solution_Nelson.ipynb b/f23/Cole_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice_Solution_Nelson.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..e8937a77346df6f6b43a4dbdcfc740233eda2d50
--- /dev/null
+++ b/f23/Cole_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice_Solution_Nelson.ipynb
@@ -0,0 +1,588 @@
+{
+ "cells": [
+  {
+   "cell_type": "code",
+   "execution_count": 1,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Type in a number: 3\n",
+      "The number is 3 then 4 then 5 then 6 then 7!\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Warmup 1: Jupyter Notebook stuck in [*]?\n",
+    "#           Press the stop button! It's probably waiting for input.\n",
+    "#           Otherwise, restart the kernal! (and run the cells)\n",
+    "\n",
+    "x = int(input(\"Type in a number: \"))\n",
+    "print(\"The number is \" + str(x), x + 1, x + 2, x + 3, x + 4, sep=\" then \", end=\"!\\n\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 2,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "120"
+      ]
+     },
+     "execution_count": 2,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# Warmup 2: Write a function that prints the factorial of parameter num\n",
+    "def do_factorial(num):\n",
+    "    i = 1\n",
+    "    factorial = 1\n",
+    "    while i <= num:\n",
+    "        factorial = factorial * i\n",
+    "        i += 1\n",
+    "    return factorial\n",
+    "        \n",
+    "do_factorial(5)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 3,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "----\n",
+      "----\n",
+      "--X-\n",
+      "----\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Warmup 3: Complete the code to print a treasure map where an X is placed \n",
+    "#           treasure_row, treasure_col (starting from 0)\n",
+    "def print_treasure_map(symbol='-', height=4, width=4, treasure_row=2, treasure_col=2):\n",
+    "    i = 0\n",
+    "    while i < height:\n",
+    "        j = 0\n",
+    "        while j < width:\n",
+    "            if i == treasure_row and j == treasure_col:\n",
+    "                print('X', end=\"\")\n",
+    "            else:\n",
+    "                print(symbol, end=\"\")\n",
+    "            j += 1\n",
+    "        print()\n",
+    "        i += 1\n",
+    "    \n",
+    "print_treasure_map()\n",
+    "#print_treasure_map(width=10, height=10)\n",
+    "#print_treasure_map('#', 7, 4, treasure_row=0, treasure_col=1)\n",
+    "#print_treasure_map('.', 5, 8, 3, 6)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# CS220: Lecture 12\n",
+    "\n",
+    "\n",
+    "## Learning Objectives\n",
+    "After this lecture you will be able to...\n",
+    "- Iterate through a dataset using for idx in range(project.count())\n",
+    "- Compute the frequency of data that meets a certain criteria\n",
+    "- Find the maximum or minimum value of a numeric column in a dataset\n",
+    "- Use break and continue in for loops when processing a dataset\n",
+    "- Handle missing numeric values when computing a maximum/minimum\n",
+    "- Use the index of a maximum or minimum to access other information about that data item"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "import project"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 5,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Help on module project:\n",
+      "\n",
+      "NAME\n",
+      "    project\n",
+      "\n",
+      "FUNCTIONS\n",
+      "    __init__()\n",
+      "    \n",
+      "    count()\n",
+      "        This function will return the number of records in the dataset\n",
+      "    \n",
+      "    get_age(idx)\n",
+      "        get_age(idx) returns the age of the student in row idx\n",
+      "    \n",
+      "    get_cats_or_dogs(idx)\n",
+      "        get_cats_or_dogs(idx) returns whether student in row idx likes cats or dogs\n",
+      "    \n",
+      "    get_lecture(idx)\n",
+      "        get_lecture(idx) returns the lecture of the student in row idx\n",
+      "    \n",
+      "    get_other_majors(idx)\n",
+      "        get_other_majors(idx) returns the secondary major of the student in row idx\n",
+      "    \n",
+      "    get_pizza_topping(idx)\n",
+      "        get_pizza_topping(idx) returns the preferred pizza toppings of the student in row idx\n",
+      "    \n",
+      "    get_primary_major(idx)\n",
+      "        get_primary_major(idx) returns the primary major of the student in row idx\n",
+      "    \n",
+      "    get_procrastinator(idx)\n",
+      "        get_procrastinator(idx) returns whether student in row idx is a procrastinator\n",
+      "    \n",
+      "    get_runner(idx)\n",
+      "        get_runner(idx) returns whether student in row idx is a runner\n",
+      "    \n",
+      "    get_section(idx)\n",
+      "        get_lecture(idx) returns the section of the student in row idx\n",
+      "    \n",
+      "    get_sleep_habit(idx)\n",
+      "        get_sleep_habit(idx) returns the sleep habit of the student in row idx\n",
+      "    \n",
+      "    get_song(idx)\n",
+      "        get_procrastinator(idx) returns the student in row idx favorite song\n",
+      "    \n",
+      "    get_zip_code(idx)\n",
+      "        get_zip_code(idx) returns the residential zip code of the student in row idx\n",
+      "\n",
+      "DATA\n",
+      "    __student__ = [{'Age': '19', 'Cats or dogs': 'cat', 'Latitude': '44.25...\n",
+      "\n",
+      "FILE\n",
+      "    c:\\users\\ctnelson1997\\desktop\\cs220\\cs220-lecture-material\\f23\\cole_lecture_notes\\12_iteration_practice\\project.py\n",
+      "\n",
+      "\n"
+     ]
+    }
+   ],
+   "source": [
+    "help(project)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "1019"
+      ]
+     },
+     "execution_count": 6,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# Get the total # of responses\n",
+    "project.count()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 7,
+   "metadata": {},
+   "outputs": [
+    {
+     "data": {
+      "text/plain": [
+       "'Other (please provide details below).'"
+      ]
+     },
+     "execution_count": 7,
+     "metadata": {},
+     "output_type": "execute_result"
+    }
+   ],
+   "source": [
+    "# Get the first student's primary major.\n",
+    "# With indices, we always start from 0!\n",
+    "project.get_primary_major(0)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 8,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "0 Other (please provide details below).\n",
+      "1 Engineering: Biomedical\n",
+      "2 Computer Science\n",
+      "3 Engineering: Other\n",
+      "4 Data Science\n",
+      "5 Engineering: Biomedical\n",
+      "6 Mathematics/AMEP\n",
+      "7 Engineering: Mechanical\n",
+      "8 Other (please provide details below).\n",
+      "9 Other (please provide details below).\n",
+      "10 Business: Information Systems\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Example 1: Print and Break\n",
+    "for i in range(project.count()):\n",
+    "    print (i, project.get_primary_major(i))\n",
+    "    if i == 10:\n",
+    "        break"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 9,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "0 Other (please provide details below).\n",
+      "1 Engineering: Biomedical\n",
+      "2 Computer Science\n",
+      "3 Engineering: Other\n",
+      "4 Data Science\n",
+      "5 Engineering: Biomedical\n",
+      "6 Mathematics/AMEP\n",
+      "7 Engineering: Mechanical\n",
+      "8 Other (please provide details below).\n",
+      "9 Other (please provide details below).\n",
+      "10 Business: Information Systems\n"
+     ]
+    }
+   ],
+   "source": [
+    "# TODO: Write the same code as above using a while loop!\n",
+    "i = 0\n",
+    "while i <= 10:\n",
+    "    print(i, project.get_primary_major(i))\n",
+    "    i += 1"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 10,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "942 out of 1019 are non-cs!\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Example 2: How many students are not in Computer Science?\n",
+    "non_cs = 0\n",
+    "for i in range(project.count()):\n",
+    "    major = project.get_primary_major(i)\n",
+    "    if major == \"Computer Science\":\n",
+    "        continue\n",
+    "    non_cs += 1\n",
+    "print(non_cs, \"out of\", project.count(), \"are non-cs!\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 11,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "200\n",
+      "19.63\n"
+     ]
+    }
+   ],
+   "source": [
+    "# TODO:   How many students are in Data Science or Statistics?\n",
+    "# BONUS:  Can you express this as a percentage?\n",
+    "# BONUS+: ...rounded to 2 decimal places?\n",
+    "num_stats_or_ds = 0\n",
+    "for i in range(project.count()):\n",
+    "    major = project.get_primary_major(i)\n",
+    "    if major == \"Data Science\" or major == \"Statistics\":\n",
+    "        num_stats_or_ds += 1\n",
+    "print(num_stats_or_ds)\n",
+    "percent_dsstats = (num_stats_or_ds / project.count()) * 100\n",
+    "print(round(percent_dsstats, 2))"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 12,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "Help on module project:\n",
+      "\n",
+      "NAME\n",
+      "    project\n",
+      "\n",
+      "FUNCTIONS\n",
+      "    __init__()\n",
+      "    \n",
+      "    count()\n",
+      "        This function will return the number of records in the dataset\n",
+      "    \n",
+      "    get_age(idx)\n",
+      "        get_age(idx) returns the age of the student in row idx\n",
+      "    \n",
+      "    get_cats_or_dogs(idx)\n",
+      "        get_cats_or_dogs(idx) returns whether student in row idx likes cats or dogs\n",
+      "    \n",
+      "    get_lecture(idx)\n",
+      "        get_lecture(idx) returns the lecture of the student in row idx\n",
+      "    \n",
+      "    get_other_majors(idx)\n",
+      "        get_other_majors(idx) returns the secondary major of the student in row idx\n",
+      "    \n",
+      "    get_pizza_topping(idx)\n",
+      "        get_pizza_topping(idx) returns the preferred pizza toppings of the student in row idx\n",
+      "    \n",
+      "    get_primary_major(idx)\n",
+      "        get_primary_major(idx) returns the primary major of the student in row idx\n",
+      "    \n",
+      "    get_procrastinator(idx)\n",
+      "        get_procrastinator(idx) returns whether student in row idx is a procrastinator\n",
+      "    \n",
+      "    get_runner(idx)\n",
+      "        get_runner(idx) returns whether student in row idx is a runner\n",
+      "    \n",
+      "    get_section(idx)\n",
+      "        get_lecture(idx) returns the section of the student in row idx\n",
+      "    \n",
+      "    get_sleep_habit(idx)\n",
+      "        get_sleep_habit(idx) returns the sleep habit of the student in row idx\n",
+      "    \n",
+      "    get_song(idx)\n",
+      "        get_procrastinator(idx) returns the student in row idx favorite song\n",
+      "    \n",
+      "    get_zip_code(idx)\n",
+      "        get_zip_code(idx) returns the residential zip code of the student in row idx\n",
+      "\n",
+      "DATA\n",
+      "    __student__ = [{'Age': '19', 'Cats or dogs': 'cat', 'Latitude': '44.25...\n",
+      "\n",
+      "FILE\n",
+      "    c:\\users\\ctnelson1997\\desktop\\cs220\\cs220-lecture-material\\f23\\cole_lecture_notes\\12_iteration_practice\\project.py\n",
+      "\n",
+      "\n"
+     ]
+    }
+   ],
+   "source": [
+    "help(project)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 13,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "The oldest student is 40\n"
+     ]
+    }
+   ],
+   "source": [
+    "# max = 0 # don't use built-in function names as variables\n",
+    "\n",
+    "# DATA FIX: In the CSV file, change the student's age from \"Senior\" to 22.\n",
+    "\n",
+    "max_age = 0\n",
+    "for i in range(project.count()):\n",
+    "    student_age = project.get_age(i)\n",
+    "    if student_age == '':\n",
+    "        continue\n",
+    "    student_age = int(student_age)\n",
+    "    if student_age > max_age:\n",
+    "            max_age = student_age        \n",
+    "print(\"The oldest student is\", max_age)\n",
+    "\n",
+    "# HINT: Did everyone fill out an age?\n",
+    "# HINT: We may have to change the data and run project.reload()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 14,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "The youngest student is 17\n"
+     ]
+    }
+   ],
+   "source": [
+    "# TODO: What is the age of the youngest student?\n",
+    "# max = 0 # don't use built-in function names as variables\n",
+    "min_age = int(project.get_age(0))\n",
+    "for i in range(project.count()):\n",
+    "    student_age = project.get_age(i)\n",
+    "    if student_age == '':\n",
+    "        continue\n",
+    "    student_age = int(student_age)\n",
+    "    if student_age < min_age:\n",
+    "            min_age = student_age        \n",
+    "print(\"The youngest student is\", min_age)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 15,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "There are 190 early birds below the age of 21.\n",
+      "There are 791 total students below the age of 21.\n"
+     ]
+    }
+   ],
+   "source": [
+    "# Example 5: How many early birds are there below the age of 21?\n",
+    "\n",
+    "early_birds = 0\n",
+    "total_students = 0\n",
+    "for i in range(project.count()):\n",
+    "    sleep_habit = project.get_sleep_habit(i)\n",
+    "    age = project.get_age(i)\n",
+    "    if age != \"\":\n",
+    "        age = int(age)\n",
+    "        if age < 21 : # TODO Complete this condition!\n",
+    "            total_students += 1\n",
+    "            if sleep_habit == \"early bird\":\n",
+    "                early_birds += 1\n",
+    "        \n",
+    "            \n",
+    "print(\"There are\", early_birds, \"early birds below the age of 21.\")\n",
+    "print(\"There are\", total_students, \"total students below the age of 21.\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 16,
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "There are 47 early birds that are 20.\n",
+      "There are 165 total students that are 20.\n",
+      "28.48% of 20 year olds are early birds\n"
+     ]
+    }
+   ],
+   "source": [
+    "# TODO:   What percentage of 20-year-olds are early birds?\n",
+    "# BOUNUS: How can we generalize our code to 'What percentage of x-year-olds are early birds?'\n",
+    "# Example 5: How many early birds are there below the age of 21?\n",
+    "\n",
+    "def print_early_birds(target_age):\n",
+    "    early_birds = 0\n",
+    "    total_students = 0\n",
+    "    for i in range(project.count()):\n",
+    "        sleep_habit = project.get_sleep_habit(i)\n",
+    "        age = project.get_age(i)\n",
+    "        if age != \"\":\n",
+    "            age = int(age)\n",
+    "            if age == target_age:\n",
+    "                total_students += 1\n",
+    "                if sleep_habit == \"early bird\":\n",
+    "                    early_birds += 1\n",
+    "\n",
+    "\n",
+    "    print(\"There are\", early_birds, \"early birds that are 20.\")\n",
+    "    print(\"There are\", total_students, \"total students that are 20.\")\n",
+    "    per_early = round((early_birds / total_students) * 100, 2)\n",
+    "    print(str(per_early) + \"% of \" + str(target_age) + \" year olds are early birds\")\n",
+    "    \n",
+    "    \n",
+    "print_early_birds(20)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 17,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Other tasks for you to try...\n",
+    "#  - What is the average age of the class?\n",
+    "#  - What is the class's favorite pizza topping?\n",
+    "#  - What is the most popular major?\n",
+    "#  - For all students that have another major, print out what it is.\n",
+    "#  - What zip code do the majority of pineapple-eating night owls live in?"
+   ]
+  }
+ ],
+ "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/f23/Cole_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice_Template_Nelson.ipynb b/f23/Cole_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice_Template_Nelson.ipynb
new file mode 100644
index 0000000000000000000000000000000000000000..a704ec21a3b79698781ce391ace70af9d93c30aa
--- /dev/null
+++ b/f23/Cole_Lecture_Notes/12_Iteration_Practice/Lec_12_Iteration_Practice_Template_Nelson.ipynb
@@ -0,0 +1,252 @@
+{
+ "cells": [
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Warmup 1: Jupyter Notebook stuck in [*]?\n",
+    "#           Press the stop button! It's probably waiting for input.\n",
+    "#           Otherwise, restart the kernal! (and run the cells)\n",
+    "\n",
+    "x = int(input(\"Type in a number: \"))\n",
+    "print(\"The number is \" + str(x), x + 1, x + 2, x + 3, x + 4, sep=\" then \", end=\"!\\n\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Warmup 2: Write a function that prints the factorial of parameter num\n",
+    "def do_factorial(num):\n",
+    "    pass"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Warmup 3: Complete the code to print a treasure map where an X is placed \n",
+    "#           treasure_row, treasure_col (starting from 0)\n",
+    "def print_treasure_map(symbol='-', height=4, width=4, treasure_row=2, treasure_col=2):\n",
+    "    i = 0\n",
+    "    while ???: # TODO: Complete the loop condition for printing out each row.\n",
+    "        j = 0\n",
+    "        while j < width:\n",
+    "            if ???: # TODO: Complete the if condition for checking if we print an X or the symbol.\n",
+    "                print('X', end=\"\")\n",
+    "            else:\n",
+    "                print(symbol, end=\"\")\n",
+    "            j += ??? # TODO: Complete the statement so we do not run into an infinite loop.\n",
+    "        print()\n",
+    "        i += 1\n",
+    "    \n",
+    "print_treasure_map()\n",
+    "print_treasure_map(width=10, height=10)\n",
+    "print_treasure_map('#', 7, 4, treasure_row=0, treasure_col=1)\n",
+    "print_treasure_map('.', 5, 8, 3, 6)"
+   ]
+  },
+  {
+   "cell_type": "markdown",
+   "metadata": {},
+   "source": [
+    "# CS220: Lecture 12\n",
+    "\n",
+    "\n",
+    "## Learning Objectives\n",
+    "After this lecture you will be able to...\n",
+    "- Iterate through a dataset using for idx in range(project.count())\n",
+    "- Compute the frequency of data that meets a certain criteria\n",
+    "- Find the maximum or minimum value of a numeric column in a dataset\n",
+    "- Use break and continue in for loops when processing a dataset\n",
+    "- Handle missing numeric values when computing a maximum/minimum\n",
+    "- Use the index of a maximum or minimum to access other information about that data item\n"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "import project"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "help(project)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Get the total # of responses\n",
+    "project.count()"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Get the first student's primary major.\n",
+    "# With indices, we always start from 0!\n",
+    "project.get_primary_major(0)"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Example 1: Print and Break\n",
+    "for i in range(project.count()):\n",
+    "    print (i, project.get_primary_major(i))\n",
+    "    if i == 10:\n",
+    "        break"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# TODO: Write the same code as above using a while loop!"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Example 2: How many students are not in Computer Science?\n",
+    "non_cs = 0\n",
+    "for i in range(project.count()):\n",
+    "    major = project.get_primary_major(i)\n",
+    "    if major == \"Computer Science\":\n",
+    "        continue\n",
+    "    non_cs += 1\n",
+    "print(non_cs, \"out of\", project.count(), \"are non-cs!\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# TODO:   How many students are in Data Science or Statistics?\n",
+    "# BONUS:  Can you express this as a percentage?\n",
+    "# BONUS+: ...rounded to 2 decimal places?"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# max = 0 # don't use built-in function names as variables\n",
+    "max_age = 0\n",
+    "for i in range(project.count()):\n",
+    "    student_age = project.get_age(i)\n",
+    "    if student_age > max_age:\n",
+    "            max_age = student_age        \n",
+    "print(\"The oldest student is\", max_age)\n",
+    "\n",
+    "# HINT: Did everyone fill out an age?"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# TODO: What is the age of the youngest student?"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Example 5: How many early birds are there below the age of 21?\n",
+    "\n",
+    "early_birds = 0\n",
+    "for i in range(project.count()):\n",
+    "    sleep_habit = project.get_sleep_habit(i)\n",
+    "    age = project.get_age(i)\n",
+    "    if age != \"\":\n",
+    "        age = int(age)\n",
+    "        if ???: # TODO Complete this condition!\n",
+    "            early_birds += 1\n",
+    "            \n",
+    "print(\"There are\", early_birds, \"early birds below the age of 21.\")"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# TODO:   What percentage of 20-year-olds are early birds?\n",
+    "# BOUNUS: How can we generalize our code to 'What percentage of x-year-olds are early birds?'"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": null,
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "# Other tasks for you to try...\n",
+    "#  - What is the average age of the class?\n",
+    "#  - What is the class's favorite pizza topping?\n",
+    "#  - What is the most popular major?\n",
+    "#  - For all students that have another major, print out what it is.\n",
+    "#  - What zip code do the majority of pineapple-eating night owls live in?"
+   ]
+  }
+ ],
+ "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/f23/Cole_Lecture_Notes/12_Iteration_Practice/cs220_survey_data.csv b/f23/Cole_Lecture_Notes/12_Iteration_Practice/cs220_survey_data.csv
new file mode 100644
index 0000000000000000000000000000000000000000..42058ad72a7752b3cf5684573b9e3cba9974553d
--- /dev/null
+++ b/f23/Cole_Lecture_Notes/12_Iteration_Practice/cs220_survey_data.csv
@@ -0,0 +1,1261 @@
+section,Lecture,Age,Primary major,Other Primary Major,Other majors,Zip Code,Latitude,Longitude,Pizza topping,Cats or dogs,Runner,Sleep habit,Procrastinator,Song
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,44.256,-88.409,basil/spinach,cat,No,early bird,Yes,Kanye
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53711,51.5072,-0.1257,Other,dog,No,night owl,Yes,Eyes Closed by Ed Sheeran 
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Computer Science,,,53703,37.7749,-122.4194,pineapple,dog,Yes,night owl,Yes,Eight - IU
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,Engineering Undecided,,53706,44.9241,-93.3474,pineapple,dog,Yes,no preference,No,"Feathered Indians, Tyler Childers"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53715,40.7128,-74.006,sausage,dog,Yes,early bird,Yes,Post malone -overdrive
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,No secondary majors ,53715,51.5072,0.1276,pepperoni,dog,Yes,night owl,Yes,No Role Modelz  - J. Cole 
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,17,Mathematics/AMEP,,Computer Science,53706,19.076,72.8777,pepperoni,dog,Yes,early bird,Maybe,Do Not Disturb - Drake
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,,Engineering: Mechanical,,,53706,37.5683,157.3409,none (just cheese),cat,Yes,night owl,Yes,
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics ,,53706,44.5133,88.0133,sausage,cat,No,night owl,Yes,"Pyro 
+
+ 
+
+Kings of Leon"
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Global Health,,53706,40.7128,-74.006,none (just cheese),dog,Yes,no preference,Maybe,everywhere by fleetwood mac
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Information Systems,,,54601,25.7617,-80.1918,mushroom,cat,No,night owl,Yes,bando playboy carti
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,43.0658,-87.9671,none (just cheese),dog,No,early bird,Yes,Today was a good day by Ice Cube
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Statistics,,data science,53703,43.0766,-89.3972,pineapple,dog,Yes,night owl,Yes,Nikes on my feet - Mac Miller
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,,53558,45.0854,93.0081,pepperoni,dog,Yes,no preference,Yes,Last Night - Morgan Waller
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Business: Finance,,,53706,28.3852,-81.5639,pepperoni,dog,Yes,night owl,Yes,Paradise  -- Coldplay
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Science: Biology/Life,,Data Science,53706,32.0809,-81.0912,sausage,cat,Yes,no preference,Yes,Cupid de Locke - the Smashing Pumpkins
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,,53716,77.82,86.48,pepperoni,dog,No,early bird,Yes,"Violent crimes 
+
+Kanye west"
+COMP SCI 319:LEC002,LEC002,28,Engineering: Other,,,53703,24.8801,102.8329,pepperoni,neither,Yes,night owl,Yes,No,I hardly listen to music.
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Other (please provide details below).,Atmospheric and Oceanic Sciences ,Journalism ,53706,48.8566,2.3522,Other,dog,No,night owl,Maybe,"Dancing Queen 
+
+By Abba "
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Business: Finance,N/A,N/A,53703,25.7,-80.2,pepperoni,dog,No,no preference,Yes,All Me by Drake
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Computer Science,,,53704,0,0,sausage,cat,No,night owl,Maybe,WYS - Snowman
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Science: Other,,,53703,43.0833,-89.3725,basil/spinach,dog,Yes,early bird,Yes,Fly Love by Jamie Foxx
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,33.3062,111.8413,mushroom,cat,No,night owl,Yes,Nerves by DPR Ian
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,,Computer Science,,,53726,35.6528,139.8395,mushroom,dog,No,night owl,No,Us by milet
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,"Comp sci, certificate in economic analytics",53715,39.7392,-104.9903,pineapple,dog,Yes,night owl,Yes,Everlong - Foo Fighters
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,BS Art,,53593,37.5665,126.978,pepperoni,cat,No,night owl,Yes,Mariah Carey - All I Want for Christmas Is You
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,43.07,-89.4,pineapple,dog,No,night owl,Yes,Vienna by Billy Joel
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Other,,,53175,42.8646,-88.3332,pepperoni,dog,Yes,night owl,Yes,Temperature by Sean Paul
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Computer Science,,Mathematics,53706,47.6081,-122.0117,pepperoni,cat,No,night owl,Yes,"Fly High!!, Burnout Syndrome "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Engineering: Mechanical,,,53703,34,5,sausage,dog,No,night owl,Yes,say so - doja cat
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,21,Business: Information Systems,,,53715,47,86,pepperoni,dog,Yes,no preference,Yes,7 Years - Lukas Graham
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Business: Information Systems,information science,,53715,29.4393,106.4556,sausage,dog,Yes,early bird,No,love story
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,20,Business: Other,,Sociology,53703,43.07,-89.4,sausage,neither,Yes,night owl,Maybe,Cudi Zone- Kid Cudi
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Peppas - Farruko
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,38258,46.3131,-91.4905,sausage,dog,Yes,night owl,Yes,No Remorse Metalica
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Data Science,,,53703,3.2028,73.2207,pepperoni,dog,Yes,night owl,Yes,"Rich Men North of Richmond
+
+Oliver Anthony"
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,21,Engineering: Mechanical,,,53715,44.9778,-93.265,pepperoni,dog,Yes,no preference,Yes,"Never Gonna Give You Up -Rick Astley
+
+ 
+
+ "
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,1134,40.4111,-105.6413,pepperoni,dog,No,night owl,Yes,Out of Touch by Daryl Hall and John Oats
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Computer Science,,Public Health and Policy,53706,37.5,126.9,basil/spinach,cat,No,night owl,No,No One Else Like You(Adam Levine)
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Data Science,,,53703,41.9028,12.4964,pepperoni,dog,No,night owl,Yes,Pursuit of Happiness by Kid Cudi
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,,Engineering: Mechanical,,,53703,12.957,77.401,macaroni/pasta,dog,Yes,night owl,Yes,Out of Touch by Hall and Oates
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,night owl,Yes,Where the Boat Leaves From By Zac Brown Band
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Other,bme,,53715,42.3601,71.0589,pepperoni,dog,No,no preference,Maybe,noah kahan - mess
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53703,39.0476,-77.132,pepperoni,dog,Yes,night owl,Yes,
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,"Econ with math emphasis (photography certificate)
+
+ ",,53703,-41.2865,174.7762,pineapple,neither,Yes,no preference,Maybe,None. 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,No,
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,40.7128,-74.006,pepperoni,dog,No,night owl,Maybe,Sultans of Swing - Dire Straits
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,45.3733,84.9553,macaroni/pasta,dog,Yes,night owl,Yes,kimdracula - deftones
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Other (please provide details below).,My primary major is Economics.,I'm planning to get data science certificate.,53715,37.5665,126.978,sausage,dog,Yes,night owl,Maybe,Dandelions - Ruth B.
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,40.7,-74,pepperoni,dog,No,no preference,Maybe,I don't really have a favorite song.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Consumer behavior and marketplace studies.,,53715,44.9778,-93.265,pineapple,cat,Yes,early bird,Maybe,Love Story - Taylor Swift
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,,Data Science,,,53706,41.8781,87.6298,pepperoni,cat,No,night owl,Yes,Bright Size Life by Pat Metheny
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Data Science,,I am considering majoring in Genetics as well,53706,45.6378,-89.4113,Other,dog,No,night owl,Yes,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53726,43.0731,-89.4012,sausage,dog,Yes,early bird,Yes,Young Girls - Bruno Mars
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53711,"205,227","1,564,035",pepperoni,cat,Yes,no preference,Maybe,"""Wont Back Down""
+
+-Tom Petty"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Genetics,Data science,53706,42.0262,-88.0697,pineapple,dog,No,night owl,Yes,Merrry-Go-Round of life by joe Hisaishi
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,,53715,37.5665,126.978,basil/spinach,dog,No,no preference,No,"""a lot"" by 21 savage"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31.2244,121.4692,pepperoni,cat,No,night owl,Yes,ハゼ馳せる果てるまで  by ずっと真夜中でいいのに
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Biomedical,,i’m considering a double major in economics or political science ,53703,48.8566,2.3522,basil/spinach,cat,No,no preference,Yes,alien superstar by beyoncé 
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,23,Mathematics/AMEP,N/A,Certificate in Data Science,53703,19.4326,-99.1332,pepperoni,dog,Yes,early bird,Maybe,Runaway by Kanye West (Fyi: it’s a 10 min song)
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,,53706,47.6062,-122.3321,pineapple,cat,No,night owl,Yes,you belong with me by taylor swift
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Industrial,,,53706,38.752,48.8466,pepperoni,cat,No,early bird,Maybe,Kerosene -Crystal Castles
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics and Psychology ,Possibly a Data science minor ,53703,40.4406,-79.9959,sausage,dog,No,early bird,Maybe,Wonderwall - Oasis
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Mathematics/AMEP,,Mathematics and Economics,53703,86.9212,40.4237,mushroom,cat,No,early bird,Maybe,Christmas List by Anson Seabra
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53708,42.3611,-71.0571,Other,dog,No,night owl,Yes,Sultans of Swing by Dire Straits
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Science: Chemistry,,None,53715,37.5683,126.9978,sausage,dog,No,night owl,Yes,Under the bridge - Red Hot Chili Peppers
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics,Data science. ,53703,36.6769,117.1201,sausage,dog,No,night owl,Yes,Heat waves by Glass Animals
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,Hey ya- outkast
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Engineering: Mechanical,,,53704,44.5133,-88.0133,pepperoni,cat,No,early bird,Yes,The adults are talking-The strokes
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,Statistics,53706,24.5551,-81.78,pepperoni,neither,Yes,no preference,No,Circles- bangers only & fawlin
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,45.4408,12.3155,pepperoni,dog,Yes,night owl,Yes,"Upside Down, Jack Johnson"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Data Science,,Secondary major: Computer Science,53711,35.6528,139.8395,sausage,cat,Yes,night owl,Yes,Mayonaka no Door / Stay With Me
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics ,maybe data science,53703,25.2048,55.2708,mushroom,cat,Yes,night owl,Maybe,"Dancing with A Stranger 
+
+Sam Smith and Normani
+
+ "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Other (please provide details below).,Pre-business.,Want to do Computer Science as my secondary major.,53718,39.9042,116.4074,pepperoni,cat,Yes,night owl,Maybe,Lose Yourself - Eminem
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,,Science: Other,Zoology ,Conservation Biology ,53706,43.0731,-89.4012,none (just cheese),cat,No,night owl,Yes,The Fall- Lovejoy 
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Economics,"French, International Studies",53715,43,89.4,sausage,dog,Yes,night owl,Yes,"Tiny Dancer, Elton John"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,,,53715,37.5665,126.978,pepperoni,dog,Yes,night owl,Yes,My favorite song is Hate you by Yerin Baek.
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,47.6062,-122.3321,pepperoni,dog,No,night owl,Maybe,"it changes often, through many genres, but currently,
+
+Aaron Hibell - destroyer of worlds (oppenheimer trance edit)
+
+ "
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC001,21,Other (please provide details below).,Economics ,Data Science,53703,0.8035,90.0425,pineapple,dog,No,night owl,Yes,Lifestyles of the Rich and Famous by Good Charlotte
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Other,Computer Engineering,NA,53715,39.795,-74.7773,pepperoni,dog,Yes,night owl,Yes,NA
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Business: Finance,,,53706,45.4647,9.1885,sausage,dog,Yes,early bird,Maybe,Drake-Passionfruit
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I'm a Computer Science Major.  ,I'm a Data science Major.,53706,42.2475,-84.4089,Other,dog,No,no preference,Maybe,Just like me by A boogie wit da hoodie.
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,,Engineering: Mechanical,,,53706,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,Love Lost - Mac Miller
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Other (please provide details below).,,"Data Science, Mathematics",53706,39.4822,-106.0462,pepperoni,dog,Yes,early bird,Yes,"Keep Your Head Up 
+
+by Andy Grammar"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Other (please provide details below).,Economics,,53073,60.3913,5.3221,pepperoni,cat,No,night owl,No,Iron Lung - King Gizzard and the Lizard Wizard
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Other (please provide details below).,Econ Major ,,53703,43.0731,-89.4012,sausage,dog,No,night owl,Yes,Follow God by Kayne West
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,20,Engineering: Mechanical,,,53076,43.7696,11.2558,Other,dog,No,no preference,Maybe,The Difference -Flume
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Information Science.,Economics.,53703,43.0731,-89.4012,Other,cat,Yes,night owl,Yes,GEEKED N BLESSED by LUCKI
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Other (please provide details below).,Journalism,,53715,41.3874,2.1686,none (just cheese),cat,Yes,night owl,Yes,revival zach bryan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Economics and certificate in Data Science ,,53703,23.2494,106.4111,pineapple,dog,No,night owl,Maybe,Sketzo by Travis Scott and Young Thug
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Finance,Finance,data science,53705,200,116,mushroom,cat,Yes,night owl,Yes,Who am I- why don't we
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Mathematics/AMEP,,,53706,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,Runaway- Kanye 
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Business: Other,Pass,Pass,53705,40.7128,-74.006,green pepper,cat,Yes,night owl,Yes,"""Steal the show"", by Lauv
+
+ "
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Computer Science,,,53706,25.7617,-80.1918,sausage,dog,No,no preference,Maybe,Bank Account - 21 Savage
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,-23.5505,-46.6333,Other,cat,Yes,night owl,Yes,"Violent Crimes - Kanye West 
+
+ps: Not a fan at all of him as a person, but huge fan of his work."
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,50,21,sausage,cat,Yes,night owl,Maybe,Symphony No. 9 by Ludwig van Beethoven
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,42.7261,-87.7895,pepperoni,dog,No,no preference,Yes,Margaritaville by Jimmy Buffett
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53706,26.1242,-80.1436,basil/spinach,cat,No,no preference,Yes,"Wash it all away, Five Finger Death Punch"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53703,42.1281,-88.0937,pineapple,dog,No,night owl,Yes,Thunderstruck AC/DC
+COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,No,53703,30.5728,104.0668,pineapple,cat,No,early bird,Yes,蓝雨 -- Jacky Cheung
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53711,31.5879,120.2127,pineapple,neither,No,night owl,Maybe,"Samudrartha and Wildfire by HOYO-MiX
+
+Watchtower of the East by Quadimension "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53706,35.2401,24.8093,pepperoni,cat,Yes,night owl,No,The Seventh Sense by NCT U
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,21,Engineering: Biomedical,,,53703,43.0128,-88.2351,sausage,dog,No,night owl,Yes,Hannah Montana by the Migos
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Business: Finance,,,53703,41.3874,2.1686,pepperoni,dog,Yes,night owl,Yes,Your love - Sosa UK
+COMP SCI 319:LEC001,LEC001,29,Science: Physics,,,53715,40.7128,-74.006,sausage,dog,Yes,no preference,Yes,"Beat it, Michael Jackson"
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Engineering: Other,,,53706,43.6532,-79.3832,pepperoni,dog,No,night owl,Maybe,Killer Queen - Queen
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Computer Science,53706,41.8781,87.6298,pineapple,dog,No,night owl,No,Shampoo Bottles - Peach Pit
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Mathematics/AMEP,,,53706,30.5928,114.305,none (just cheese),cat,No,night owl,Yes,
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,Communication Arts,53706,52.7107,-8.879,Other,dog,No,night owl,Yes,Boomerang by Summer Set
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Atmospheric and Oceanic Science,,53703,64,21,green pepper,dog,No,no preference,No,
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Statistics,,Still deciding between math or data science,53703,"41,520,480","87,395,400",pepperoni,cat,No,no preference,No,Mandy by Barry Manilow
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economics,,53726,22.5431,114.0579,mushroom,dog,No,early bird,Maybe,Forever Young; Blackpink
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC002,20,Engineering: Mechanical,,,53706,41.8781,87.6298,pineapple,dog,Yes,early bird,Maybe,"""Peg"" - Steely Dan
+
+ "
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,Data Science ,Economics,53703,12.9,77.5,sausage,neither,Yes,night owl,Maybe,Metallica - Enter Sandman
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Engineering: Industrial,,,73506,8.538,-80.7821,none (just cheese),dog,No,no preference,Maybe,"Como has estau? -Mora
+
+Quevedo - Quevedo
+
+Yankee- quevedo"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,,Data Science,53719,55.7558,37.6173,pineapple,cat,No,night owl,Yes,Cate's Brother by Maisie Peters
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53715,47.9031,-91.8565,pineapple,cat,Yes,night owl,Yes,Kiss Me - Sixpence None The Richer
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Mechanical,Mechanical Engineering,,53706,19.076,72.8777,none (just cheese),dog,No,no preference,Maybe,This Side of Paradise - Coyote Theory 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Other,Econ,,53703,41,-73.6,Other,dog,Yes,night owl,Yes,Sunflower seeds by bryce vine 
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,25,Other (please provide details below).,Economics,,53703,35,129,Other,dog,No,night owl,Maybe,Not today - bts
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Actuarial,,Math,53703,22.5431,114.0579,sausage,dog,No,night owl,Maybe,"All We Know
+
+The Chainsmokers"
+COMP SCI 319:LEC001,LEC001,26,Business: Other,MBA specializing in tech strategy and product management ,,53558,41.0082,28.9784,basil/spinach,cat,No,night owl,Yes,"Tears in the Rain, The Weeknd "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Mathematics/AMEP,,,53703,40.6541,109.8201,sausage,cat,No,night owl,Yes,Yellow - Coldplay
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53706,35.0568,118.3406,Other,cat,No,night owl,Yes,"Common Jasmin Orange by Jay Chou
+
+it's a Chinese song, so you probably can't understand the lyrics"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Biomedical,,,53703,46.7828,-92.1055,sausage,cat,Yes,night owl,Yes,I'm Just Ken by Ryan Gosling
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,Comp Sci ,53703,43.0731,-89.4012,pineapple,dog,Yes,no preference,No,Don't go breaking my heart - Elton John 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53719,43.0731,-89.4012,pepperoni,cat,Yes,night owl,Yes,Pride by Kendrick Lamar
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53715,31.2304,121.4737,green pepper,cat,No,night owl,Yes,Talking to the Moon--Bruno Mars
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,23,Other (please provide details below).,consumer science,i don't have,53703,31.2304,121.4737,mushroom,neither,Yes,early bird,Yes,hero Mariah Carey
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Business: Other,,,53706,13.7563,100.5018,pepperoni,dog,No,night owl,Maybe,Die for you by the Weeknd
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,,Engineering: Biomedical,,,53706,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,You give love a bad name - Bon Jovi
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,21,Business: Finance,,RMI,53703,48.8566,2.3522,pepperoni,cat,No,no preference,Yes,Get out off town - Anita O'day
+COMP SCI 319:LEC002,LEC002,,Science: Other,,,53703,49,-123,pepperoni,neither,No,night owl,Yes,Whatever :)
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Computer Science,,,537061127,36.1627,-86.7816,sausage,dog,No,no preference,Yes,Runnin' With the Devil - EVH
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Economics,Math,53703,43.0969,-89.5115,pepperoni,dog,No,early bird,Yes,Homemade - Jake Owen
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,1000,48.8566,2.3522,pepperoni,neither,No,no preference,Maybe,"Imagine Dragons, Radioactive."
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Other,,,53715,44.2134,-88.5018,pepperoni,dog,No,no preference,Yes,3005 - Childish Gambino
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Mechanical,,,53216,20.8854,-156.6653,pepperoni,neither,No,no preference,No,
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Business: Information Systems,,,53715,40.71,-74,pineapple,cat,No,night owl,Yes,Japanese Denim by Daniel Caesar
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53715,14.5995,120.9842,pepperoni,dog,Yes,night owl,No,Cherry Wine- Grent Perez
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,,53706,85.8398,10.2985,mushroom,dog,No,night owl,Maybe,"""Streems"" by The Symposium"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Statistics,"I'm double majoring in mathematics and statistics; I hope to do research in some sort of applied probability theory after graduating (e.g. econometrics, mathematical biology, etc.)",n/a,53726,35.6762,"1,396,503",pepperoni,cat,Yes,early bird,No,"How Much a Dollar Cost, by Kendrick Lamar"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Mechanical,,business,53715,27.4967,-82.6948,pepperoni,dog,No,early bird,No,Jimmy Cooks - Drake
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Data Science,I am doing eco and plan to get a ds certificate,no,53703,39.9042,116.4074,Other,neither,No,early bird,No,''Capital''by Lo Ta-you
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,,,53726,41.8781,-87.6298,sausage,cat,Yes,night owl,Maybe,Shiva - Spillage Village & JID
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,35.9594,-83.9196,pepperoni,dog,Yes,early bird,No,Talkin' Tennessee by Morgan Wallen
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,44.5667,-92.5343,pepperoni,dog,No,night owl,Yes,street dreams by nas
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Business: Other,,,53703,37.7749,-122.4194,mushroom,dog,No,night owl,Yes,"Take it Easy - The Eagles
+
+Otherside - Red Hot Chili Peppers"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,Global Health,N/A,53706,42.3601,71.0589,basil/spinach,dog,Yes,night owl,Maybe,Somewhere Only We Know by Keane
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53703,42.3314,-83.0458,sausage,dog,Yes,no preference,No,"Life Goes On - Lil Baby, Lil Uzi Vert, Gunna"
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,"Biomechanics focus, Dance Certificate",53715,36.1627,-86.7816,pepperoni,dog,No,night owl,Maybe,"No specific songs but I love Elton John, Queen, Noah Kahan"
+COMP SCI 319:LEC003,LEC003,22,Science: Biology/Life,,,53703,43.07,-89.38,mushroom,dog,No,early bird,No,Swimming Horses by Siouxsie and the Banshees
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Statistics,,,53706,22.5431,114.0579,sausage,dog,Yes,no preference,Maybe,I Want My Tears Back--Nightwish
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Data Science,,Physics,53706,27.7172,85.3239,sausage,dog,Yes,early bird,No,Hall of fame
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,Economics,53706,48.8647,2.349,pepperoni,dog,Yes,night owl,Yes,Let It Happen - Tame Impala
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Business: Finance,,Data Science,53706,41.8781,-87.6298,basil/spinach,cat,No,night owl,Yes,LOYALTY FT. RIHANNA - KENDRICK LAMAR
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Other (please provide details below).,,,53706,41.9028,12.4964,Other,neither,No,no preference,Yes,Danza Kuduro - Don Omar
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Statistics,,,53706,47.3769,8.5417,mushroom,dog,No,no preference,Maybe,Blue Jay Way by the Beatles
+COMP SCI 319:LEC002,LEC002,22,Business: Finance,,,53715,35,36,sausage,dog,No,early bird,Yes,TALLY BLACKPINK
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Mathematics/AMEP,,Data Sciene,53706,43.0707,-89.4142,sausage,dog,Yes,night owl,No,Build me up Buttercup- The foundations
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,23,Mathematics/AMEP,,,53703,34.34,108.93,mushroom,cat,Yes,early bird,Yes,The name is Super Gremlin. Artist is Kodak Black. 
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Science: Other,,,537061127,3.139,101.6869,sausage,dog,Yes,no preference,Yes,Edge of Desire - John Mayer
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53562,44.5004,-88.0613,pepperoni,dog,Yes,no preference,Maybe,
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Finance,,,53703,41.8842,-87.6324,sausage,dog,No,early bird,Maybe,"Stayin Alive, Drake and DJ Khalid"
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,56.4907,-4.2026,mushroom,dog,No,early bird,Maybe,Maroon by Taylor swift 
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,was provided,German (maybe),53726,48.1351,11.582,pepperoni,dog,No,night owl,Yes,You Proof - Morgan Wallen
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Springsteen - Eric Church
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,36.3932,25.4615,basil/spinach,dog,No,night owl,Yes,Mercy Now by Mary Gauthier
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC001,21,Business: Information Systems,,Data science ,53715,30.2667,-97.7333,pepperoni,dog,Yes,early bird,Yes,Hey driver Zach Bryan 
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC004,21,Business: Other,,,53703,41.3851,2.1734,pepperoni,dog,Yes,night owl,Yes,I remember by Zach Bryan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53715,44.0999,9.7382,pineapple,dog,No,no preference,No,Bury Me in Georgia by Kane Brown
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Business: Finance,Finance,,53726,35.6895,139.6917,sausage,cat,No,night owl,Yes,Mona Lisas and mad hatters by elton john
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53706,38,-77,Other,dog,No,night owl,Yes,dont stop believing 
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.78,-73.97,none (just cheese),dog,No,night owl,Yes,"Replay by Iyaz
+
+ "
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53715,43.0731,-89.4012,sausage,neither,No,no preference,Yes,Cream Soda - EXO
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC001,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,Yes,night owl,Yes,Beast of Burden - The Rolling Stones
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53715,40.7128,-74.006,pepperoni,cat,Yes,early bird,Maybe,Upside down- Jack Johnson
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Statistics,,computer science ,53706,40.7128,-74.006,pineapple,dog,Yes,early bird,No,The greatest show man
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Industrial,,,53715,41.8781,87.6298,sausage,cat,Yes,night owl,Yes,Ghost Town-Kanye West
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Maybe,Money by Pink Floyd 
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,,Business: Information Systems,,,53703,36.107,-112.113,pepperoni,cat,Yes,night owl,Maybe,"Blinding lights, the weeknd"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Engineering: Mechanical,,,53703,44.9591,-89.6343,green pepper,dog,Yes,night owl,Yes,any wheeler walker junior song
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial," 
+
+ ",,53711,43.0731,89.4012,pepperoni,cat,Yes,early bird,No,I will wait by mumford and sons
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,finance,53706,41.8781,87.6298,sausage,dog,No,night owl,Yes,"La Cancion, Bad Bunny and J Balvin"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,My primary major is Economics ,Informations Systems,53703,33.8812,-118.4072,sausage,dog,No,night owl,Yes,Lakeshore Drive Aloitta Haynes Jeramiah
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Other (please provide details below).,Economics,,53703,41.88,-87.63,mushroom,cat,Yes,night owl,Yes,"Everything She Aint, Hailey Whitters"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Econ,no,53703,43.0731,-89.4012,mushroom,dog,No,night owl,Maybe,In the night gardeen
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Computer Science,,math,53715,"398,954","1,163,946",mushroom,dog,No,night owl,Maybe,bones
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,\,"Economics major, Data Science certificate",53703,39.8954,116.3946,none (just cheese),cat,Yes,no preference,Maybe,no preference
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Engineering: Biomedical,,,53715,48.8566,2.3522,sausage,neither,No,night owl,Yes,ETA - New Jeans
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,economics ,"Data science 
+
+ ",53703,33.6188,-117.8566,pepperoni,dog,No,night owl,Maybe,"Heartache on the dance floor - jon pardi 
+
+ 
+
+ "
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,39.9042,116.4074,mushroom,dog,No,night owl,Yes,Gone-Nelly/Kelly
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Data Science,,Statistics,53715,35.414,-79.0933,Other,dog,Yes,night owl,Yes,Revival - Zach bryan
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Other,Material Science and Engineering,.,53703,51.2094,3.2252,pineapple,dog,No,early bird,No,Aria Math
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Computer Science,,,53703,40.95,-73.73,none (just cheese),neither,Yes,early bird,Maybe,Closer - Chainsmokers
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,12.9716,77.5946,none (just cheese),dog,Yes,night owl,Yes,Any Coldplay song works!
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Data Science,,Economics,53066,43.1144,-88.5072,pepperoni,dog,No,night owl,Maybe,God tier-Baby Tron
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53073,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Vienna: Billy Joel
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,24,Other (please provide details below).,Neurobiology,Psychology,53703,60.3913,5.3221,Other,dog,Yes,early bird,Yes,"Title: Ôba, Lá Vem Ela
+
+Artist: Jorge Ben"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Data Science,,,53703,43.0731,-89.4012,mushroom,neither,No,early bird,No,"《To have,or not to have》
+
+Lin Sheng Hsiang"
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,42.64,-71.1291,pepperoni,dog,No,early bird,Yes,505 - arctic monkeys
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Computer Science,,,53715,41.8781,-87.6298,mushroom,dog,Yes,night owl,Yes,Sicko Mode by Travis Scott and Drake
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,25.033,121.5654,mushroom,neither,Yes,night owl,Yes,
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Business: Other,marketing,economics,53706,40,116,pineapple,dog,No,night owl,Yes,Save Your Tears (Remix)--Ariana Grande& The Weekend
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Computer Science,,Biochemistry,53706,10.8231,106.6297,none (just cheese),dog,Yes,early bird,Maybe,"""Dress""
+
+Taylor Swift"
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,Economics,53706,31.2304,121.4737,pepperoni,dog,No,night owl,Maybe,Shed a light
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,21,Data Science,Econ,,53703,34.6937,135.5022,pineapple,dog,No,night owl,Maybe,Moon by Kanye west
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science,N/A,Certificate - Data Science,53703,-33.9235,151.1399,Other,dog,Yes,night owl,Yes,5SOS - Teeth
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Computer Science,,,53726,39.9042,116.4074,sausage,cat,No,night owl,Maybe,Planet of the bass
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,23,Business: Finance,,Data Science Certificate (reason I am taking the course),53705,39.6403,-106.3709,pineapple,cat,Yes,no preference,Yes,"professional Griefers; Deadmau5, Gerard Way"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Business: Information Systems,,International Business,53703,38.6992,-75.0968,basil/spinach,dog,Yes,early bird,No,"Revival, Zach Bryan
+
+ "
+COMP SCI 319:LEC002,LEC002,27,Science: Other,Information Science,,53705,44.0164,-92.4754,sausage,dog,Yes,night owl,Yes,Enchanted - Taylor Swift
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,28,81,pepperoni,dog,No,night owl,Yes,More than my hometown by Morgan Wallen
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Business: Other,Business Admin,,53706,36.7194,-4.42,Other,dog,Yes,night owl,Yes,cigarette daydreams - cage the elephant
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,39.0655,85.2563,pepperoni,neither,Yes,night owl,Maybe,n/a
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Data Science,Economics,,53703,31.2304,121.4737,mushroom,cat,Yes,no preference,No,Summertime Sadness---Lana Del Rey
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Data Science,,,53706,35.6895,139.6917,basil/spinach,dog,No,night owl,Maybe,Slow Dancing from V
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Other,Materials Science and Engineering,,53711,45.9013,-89.8459,Other,cat,No,night owl,Yes,Rio by Duran Duran
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Actuarial,,,53703,35.6895,139.6917,pepperoni,dog,Yes,no preference,Maybe,"dancing in the dark by Bruce Springsteen 
+
+ "
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Engineering: Other,My major is Chemistry but I intend to switch to Material Science and Engineering,,53711,48.8647,2.349,macaroni/pasta,cat,No,no preference,Maybe,Anything Taylor Swift
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53703,41.8781,87.6298,basil/spinach,dog,Yes,early bird,Maybe,Landslide Fleetwood Mac
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Computer Science,,Data Science,53715,33.9835,-118.248,pepperoni,cat,No,early bird,Yes,Khai Dreams - Sunkissed
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,47.61,122.33,pepperoni,cat,Yes,night owl,Yes,"Maroon, Taylor Swift"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,38.9333,-77.0711,pepperoni,dog,No,early bird,No,Smaller acts- Zach Bryan
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53701,45.1433,-89.1518,pepperoni,dog,Yes,early bird,Yes,When I'm gone - Dirty Honey
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Data Science,,Psychology,53711,37.9838,23.7275,green pepper,neither,No,night owl,Yes,Telepatia by Kali Uchis
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,N/A,N/A,53706,43.0737,-89.4026,pepperoni,dog,No,night owl,No,Trustfall by P!nk (Pink)
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Engineering: Mechanical,,,53715,42.35,-71.06,mushroom,cat,No,night owl,Yes,Upside Down - Jack Johnson
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Computer Science,,"Computer Science, Mathematics",53706,34.6937,135.5022,mushroom,dog,Yes,early bird,Yes,Taylor Swift
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,22,Engineering: Other,,,53703,41.8781,-87.6298,pineapple,dog,No,early bird,No,Semi-Charmed Life - Third Eye Blind
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,47.6062,-122.3321,pepperoni,dog,No,early bird,Yes,Ultralight Beam- Kanye West
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,31.2304,121.4737,pepperoni,dog,Yes,night owl,Yes,Excuses-- Jay Zhou
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Economics with a Mathematical Emphasis,,53703,37.7749,-122.4194,pepperoni,dog,Yes,night owl,No,Cigarette Daydreams by Cage the Elephant
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Psychology,Data Science,53719,30.5928,114.3052,pepperoni,cat,Yes,no preference,Yes,Marunouchi Sadistic
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,,Business: Information Systems,,Data Science,53715,41.8781,-87.6298,sausage,dog,No,early bird,Yes,Staying Over by Sam Grow
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Computer Science,,,53706,37.3387,121.8853,basil/spinach,dog,Yes,night owl,Maybe,All Too Well-Taylor Swift
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Engineering: Industrial,,,53705,47.6,-122.3,green pepper,neither,No,night owl,Maybe,Good Time (Owl City)
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Business: Other,,Data Science,57306,-33.8688,151.2093,sausage,cat,Yes,no preference,No,Time by Pink Floyd
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Business: Information Systems,,Risk Management & Insurance,53703,43.0739,-89.3852,none (just cheese),dog,Yes,night owl,Yes,Heading South by Zack Bryan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,//,//,53715,45.7088,-121.5252,Other,dog,Yes,early bird,No,Honeybee - the Head and the Heart
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Mathematics/AMEP,,,53726,44.1495,9.6547,pepperoni,dog,Yes,early bird,No,"John Mayor - Wild Blue
+
+ 
+
+ 
+
+ 
+
+ 
+
+ 
+
+ "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,23,Engineering: Industrial,,,53715,37.5665,126.978,pepperoni,cat,Yes,night owl,Yes,"Burning Heart, Survivor"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Computer Science," 
+
+ ",Certificate in Data Science,53715,39.483,-106.0463,macaroni/pasta,dog,Yes,night owl,Yes,505 by the Arctic Monkeys
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,5.4164,100.3327,none (just cheese),dog,Yes,no preference,Yes,Melancholy Hill - Gorillaz
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Statistics,,,53706,55.6672,12.5512,green pepper,dog,Yes,no preference,Maybe,Pink + White by Frank Ocean
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,23,Business: Finance,ECONOMICS ,FINANCE,53703,-45.0312,168.6626,pineapple,dog,Yes,early bird,No,Kiss Me Through The Phone - Souja Boy
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economy,no,53703,39,116,sausage,neither,Yes,no preference,Maybe,the nights  Avicii
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Other,Political Science,,53715,45.0813,-93.135,pepperoni,dog,No,night owl,Yes,No Surprises: Radiohead
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Economics ,Maybe data science,53715,19.076,72.8777,basil/spinach,dog,No,night owl,Yes,none at the moment 
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Mathematics/AMEP,N/A,N/A,53703,38.914,121.6147,macaroni/pasta,cat,No,night owl,Yes,You(=I) by BOL4
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53726,29.9511,-90.0715,pineapple,dog,Yes,night owl,Yes,Margaritaville - Jimmy Buffett
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,20,Data Science,,,53715,60.1699,24.9384,pepperoni,dog,No,early bird,Yes,Poison - Alice Cooper
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,Economics,53703,22.5431,114.0579,basil/spinach,dog,Yes,early bird,No,Palm Springs-Virginia To Vegas
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,21,Engineering: Other,Materials Science and Engineering,,53703,32.7157,-117.1611,green pepper,dog,No,night owl,No,The Fragrance of Dark Coffee by Noriyuki Iwadare
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Other (please provide details below).,Math,"Econ, CS",53703,39.9042,116.4074,mushroom,dog,No,early bird,Maybe,"Qing tian, Jay Chou"
+COMP SCI 319:LEC003,LEC003,24,Engineering: Other,,,53711,32.4,119.4301,mushroom,cat,Yes,early bird,No,Just the two of us——Jose James
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Poli Sci & History,"Business, Development Economics, Data Science, Public Policy",53715,40.1728,74.006,Other,dog,No,night owl,Maybe,"""The Adults Are Talking"" by The Strokes"
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,28.3731,-81.5569,none (just cheese),cat,No,no preference,Maybe,The Story of Us by Taylor Swift
+COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,38.914,121.6147,tater tots,dog,No,no preference,No,Butter—Fly  by わだ こうじ
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Science: Physics,,,53706,52.3676,4.9014,pineapple,cat,No,night owl,Yes,"Orion - Metallica, first section is decent but the entire middle section is the most beautiful piece of music to me and has always been my favorite song ever."
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39.4821,-106.0487,none (just cheese),cat,No,night owl,Yes,ivy by taylor swift
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,35.6895,139.6917,pepperoni,cat,Yes,night owl,Yes,"Title: The Less I Know the Better
+
+Artist: Tame Impala"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53711,43.7696,11.2558,sausage,dog,No,night owl,Yes,Break My Stride Mattew Wilder
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Other (please provide details below).,Biochemistry,Data Science,53715,34.0522,-118.2437,macaroni/pasta,dog,No,night owl,Yes,Nonsense - Sabrina Carpenter
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Other,,,53706,35.6528,139.8395,pineapple,cat,Yes,night owl,Yes,"Fly me to the moon --- Frank Sinatra
+
+Night Dancer --- imase"
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.4784,-106.0443,pepperoni,cat,No,night owl,Yes,Style by Taylor Swift
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Yes,Do Not Disturb -Drake
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,n/a,n/a,53715,25.7617,-80.1918,pineapple,cat,Yes,night owl,Yes,Chicken Tendies by Clinton Kane
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Biomedical,,,53715,43.0731,-89.4012,sausage,cat,Yes,early bird,Maybe,Mayonaise by The Smashing Pumpkins
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,41.3851,2.1734,mushroom,dog,No,early bird,Yes,Hysteria - Muse
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,,Other (please provide details below).,not declare yet,,53711,37.5665,126.978,mushroom,dog,No,no preference,Maybe,blackpink - pink venom
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Computer Science,,Data Science certificate,53703,44.5012,-88.0611,pepperoni,cat,No,night owl,Maybe,All That by Mac Miller
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53711,51.5074,-0.1278,mushroom,dog,Yes,no preference,Maybe,"""Always There"" -Greta Van Fleet"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Computer Science,,,53715,49,50,pepperoni,dog,No,night owl,Maybe,Chandelier - DJ Khaled
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,22,Business: Other,,"consumer behavior & marketpace studies, economics",53703,18.2528,109.5119,mushroom,dog,No,no preference,Yes,"Angel, Mosiah"
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.0134,-69.3102,Other,cat,Yes,no preference,No,September by Earth Wind and Fire
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Biomedical,,,53706,41.8781,-87.6298,mushroom,dog,No,early bird,Maybe,no option post malone
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Business: Finance,,Information Systems,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Wat's Wrong by Isaiah Rashad
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,"Double major: Finance, Investment, and Banking / Information Systems",,53715,43.6123,-110.7054,pepperoni,dog,No,night owl,Yes,"Looking out for you, Joy Again"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Other (please provide details below).,Economics,Data Science minor,53703,33.8847,-118.4072,pineapple,dog,Yes,no preference,Yes,Boss DJ by Sublime
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.9526,-75.1652,mushroom,dog,No,no preference,Maybe,Everybody Wants to Rule the World- Tears for Fears
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,21,Science: Biology/Life,,,53703,30.5728,104.0668,mushroom,cat,Yes,early bird,Yes,"Until I Found You
+
+Stephen Sanchez"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Other (please provide details below).,econ,data science,53703,0,45,pineapple,dog,No,no preference,No,fire on fire Sam Smith
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Biomedical,,Data science,53706,43.168,-89.284,basil/spinach,dog,No,night owl,Yes,505 by the artic monkeys
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,Textiles and Fashion Design ,,53703,48.6997,-122.8756,basil/spinach,dog,Yes,night owl,Yes,32 Flavors by Alana Davis 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Science: Biology/Life,,,53706,42.9005,-88.0291,pineapple,dog,No,night owl,Maybe,Regular (English Version)- NCT 127
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Other (please provide details below).,Economics,Spanish,53715,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,I am an undecided freshman major right now. I am thinking about applying to the industrial engineering major or majoring in psychology and legal studies because I have an interest in going to law school. ,,53706,25.7033,-80.2828,none (just cheese),dog,Yes,night owl,Maybe,Lay All Your Love On Me by ABBA 
+COMP SCI 319:LEC003,LEC003,24,Other (please provide details below).,Economics,,53703,40,116,sausage,cat,No,night owl,No,"Play Date
+
+Martinez"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information Science. Possibly data science certificate.,,53703,48.8566,2.3522,macaroni/pasta,dog,No,night owl,Maybe,Dandelions by Ruth B.
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Computer Science,,,53715,42.1024,-88.0585,pineapple,dog,Yes,night owl,Yes,The Scientist by Coldplay
+COMP SCI 319:LEC004,LEC004,23,Other (please provide details below).,Economics,,53704,39.904,116.407,pineapple,neither,Yes,early bird,Yes,Every song by Jay Chou. A Chinese singer.
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Data Science,,economics,57306,24.4798,118.0894,pepperoni,neither,No,night owl,No,The Hills by The weekend
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,,53703,43.076,89.3929,pepperoni,dog,Yes,no preference,Yes,"Jake's Piano - Long Island
+
+Zach Bryan"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Nuclear Engineering,,53703,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,,Engineering: Mechanical,,,53703,33.493,-111.9258,pepperoni,dog,No,night owl,Yes,Teguila Shots- Kid Cudi
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Mathematics/AMEP,,,53703,53.3498,-6.2603,none (just cheese),dog,No,early bird,Yes,You Can't Make Old Friend by Kenny Rogers ft. Dolly Parton
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53703,40.71,-74,none (just cheese),dog,Yes,night owl,Yes,Anything Harry Styles
+COMP SCI 319:LEC004,LEC004,22,Business: Information Systems,,,53703,36.0671,120.3826,pineapple,dog,No,night owl,Maybe,lonely dance
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Engineering: Mechanical,,,53715,44.9212,-93.4688,pepperoni,dog,No,night owl,Yes,Snow (Hey Oh) by Red Hot Chili Peppers
+COMP SCI 319:LEC001,LEC001,23,Computer Science,,,53703,23.1291,113.2644,tater tots,neither,Yes,early bird,Maybe,《lost stars》- Adam Levine
+COMP SCI 319:LEC003,LEC003,22,Other (please provide details below).,Geography  - Geographic Information Science and Cartography,N/A,53715,45.5017,-73.5673,mushroom,dog,No,night owl,Yes,Afterglow - Ed Sheeran
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,Computer Science,Data Science,53706,35.6895,139.6917,sausage,dog,No,night owl,Yes,"Lost in Paradise , Miura Jam"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53715,30.1766,-85.8055,pepperoni,dog,No,early bird,No,"Billie Jean-Micheal Jackson
+
+or
+
+Cum on Feel the Noize-Quiet Riot"
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.1898,106.8183,pepperoni,dog,No,night owl,Yes,Peach — Sammy Virji 
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,22,Computer Science,,,53703,17.4203,78.4029,mushroom,dog,Yes,no preference,Maybe,Popular (feat. Playboi Carti) by The Weeknd & Madonna
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Data Science,,Computer Science,53705,37.45,-122.2,pineapple,cat,No,early bird,Maybe,Natural - What If
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,night owl,Yes,All Falls Down by Kanye West
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,Other,dog,Yes,early bird,No,Fishing in the Dark - Nitty Gritty Dirt Band
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,Economics,,53703,22.5431,114.0579,pepperoni,dog,Yes,night owl,No,snowman-sia
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,,53706,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,39,Data Science,xxx,Biomedical Data Science,53713,47.3006,-88.0459,pepperoni,cat,Yes,no preference,Yes,"Our Song, Joe Henry"
+COMP SCI 319:LEC001,LEC001,23,Science: Other,information science,,53718,40.4259,-86.9081,pepperoni,dog,No,no preference,Yes,Young and Beautiful by Lana Del Rey
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Computer Science,,,53703,39.3597,111.5863,pepperoni,dog,No,night owl,Yes,Baby I'm bleeding - Jpeg Mafia
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Engineering: Biomedical,,,57303,41.8,-72,sausage,dog,No,early bird,No,Money - The Drums
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC001,20,Data Science,,Math Econ,53711,48.1376,11.5799,pepperoni,cat,No,no preference,Maybe,FE!N by Travis Scott
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,Spanish,53706,44.7666,-85.5946,none (just cheese),dog,Yes,no preference,No,Single ladies - Beyoncé
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53718,40.7584,-73.9843,none (just cheese),dog,Yes,early bird,Maybe,"Spectrum - Florence + The Machine, Calvin Harris"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Computer Science,,,53706,22.3072,73.1812,none (just cheese),neither,Yes,no preference,Maybe,I have no such preference for songs.
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Computer Science,I am a computer science major.,Not Mandatory,53706,25.2048,55.2708,pepperoni,dog,Yes,early bird,No,Titi me pregunto by bad bunny.
+COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econometrics,,53711,24.8801,102.8329,pineapple,cat,No,night owl,Yes,Resting Ground by Christopher Larkin
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,economics,data science,53703,5.4203,100.3119,none (just cheese),cat,No,no preference,Maybe,You give love a bad name bon jovi
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,,Business: Finance,,,53703,52.3702,4.8952,pepperoni,dog,No,night owl,Yes,Radio Ga Ga by Queen.
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Science: Biology/Life,,,53706,-8.6399,115.1402,Other,dog,No,night owl,Yes,Rise  
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,,,pepperoni,dog,No,night owl,Yes,
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Biomedical,,Spanish,53715,44.8504,93.7876,pineapple,dog,Yes,night owl,Yes,Nonstop by Drake
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53711,-33.9249,18.4241,pineapple,dog,Yes,early bird,Yes,Violent Crimes - Kanye West
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Data Science,,Information Systems,53175,28.5383,-81.3792,sausage,dog,No,early bird,No,Come On Eileen by Dexys Midnight Runners
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Mathematics/AMEP,,Psychology,53715,38.9072,-77.0369,pineapple,dog,No,early bird,Yes,Love Story - Taylor Swift
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,N/A,N/A,53711,42.6507,18.0944,pepperoni,dog,Yes,no preference,Yes,Holanda - Jhayco
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53715,40.7128,-74.006,pepperoni,neither,Yes,night owl,Yes,《花海》from 周杰伦;Floral Sea by Jay Chou
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,22,Other (please provide details below).,Mechanical Engineering,Physics,53711,39.7392,-104.9903,pineapple,dog,No,night owl,Yes,"""The Weight of Dreams"" by Greta Van Fleet (modern day copy-cat of Led Zeppelin)"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53715,49.7938,-93.1955,mushroom,dog,Yes,night owl,Yes,Hurt Feelings by Mac Miller
+COMP SCI 319:LEC002,LEC002,23,Science: Other,master of science information (data analyst),none,53703,44.0521,-123.0868,sausage,cat,No,night owl,Yes,beside you - keshi
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,21,Statistics,,,53703,44.51,88.01,basil/spinach,cat,No,night owl,Yes,Dunno - mac miller
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,23,Computer Science,,Economics,53715,55.6761,12.5683,sausage,dog,Yes,no preference,Yes,Uden dig - ukendt kunster
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Cellular and Molecular Biology,Japanese,53703,35.3032,139.5657,basil/spinach,dog,No,night owl,Yes,Memories by Maroon 5
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Computer Science,,,53706,37.5326,127.0246,sausage,cat,Yes,no preference,Yes,"Title: Some might say (Oasis) 
+
+ 
+
+ "
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Finance,Finance ,Marketing,53715,64.9631,-19.0208,sausage,dog,No,night owl,Yes,Jump Around by House of Pain
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,Undecided,,53715,41.8781,-87.6298,basil/spinach,dog,No,early bird,Yes,New Beat by Toro y moi
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Economics,,53818,43,0,sausage,neither,No,night owl,Maybe,None 
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,39.9526,-75.1652,pepperoni,dog,No,night owl,Yes,All the Stars by Kendrick Lamar and SZA
+COMP SCI 319:LEC004,LEC004,22,Computer Science,,,53715,22.5431,114.0579,sausage,cat,No,night owl,Yes,cruel summer!!! Taylor swift!!!
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Accounting,Finance,53715,41.8781,-87.6298,sausage,dog,Yes,night owl,Yes,Change- Bailey Zimmerman
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,Political Science,,53703,41.8781,-87.6298,Other,cat,Yes,early bird,Maybe,"Nashville, TN by Chris Stapleton"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Computer Science,,,53715,22.5886,88.4043,Other,dog,No,no preference,Yes,Elevated - Shubh
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC004,20,Data Science,,,53703,35.9078,127.7669,pepperoni,dog,Yes,early bird,Yes,One Call Away - Charlie Puth
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,49.2827,-123.1207,pineapple,cat,No,no preference,Yes,"before he cheats
+
+by carrie underwoods"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Biomedical,,,53706,35.6895,139.6917,basil/spinach,dog,Yes,no preference,Yes,Wind Blows - Dreamcatcher
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,n/a,n/a,53706,43.0517,-89.3427,macaroni/pasta,dog,Yes,no preference,Yes,"title: wonderwall 
+
+artist: Oasis  "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Data Science,,,53716,44.5133,-88.0133,green pepper,dog,No,night owl,Yes,Mr. Rager by Kid Audi
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Finance,,"Mathamatics for finance, Economics",53703,24.4798,118.0894,Other,cat,Yes,no preference,Maybe,Not good enough for you-Jay Chou
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Business: Other,Marketing,,53715,43.0389,-87.9065,none (just cheese),cat,Yes,no preference,Maybe,I guess that's why they call it the blues - Elton John
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Data Science,I plan to major in Data science.,no second major,53711,33.6225,113.3418,basil/spinach,dog,No,night owl,Maybe,That Girl by Olly Murs
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,23,Other (please provide details below).,Economics,Political Science,53703,43.0731,-89.4012,pepperoni,cat,Yes,night owl,No,500 Miles
+COMP SCI 319:LEC001,LEC001,30,Engineering: Other,,,53705,-34.4909,-58.4892,pepperoni,dog,Yes,early bird,Maybe,Sweet Child O' Mine - Guns N' Roses
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Economic,,53705,31.2304,121.4737,none (just cheese),cat,No,early bird,Yes,Closer by the chainsmokers
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Business: Information Systems,,,53706,33.4484,-112.074,none (just cheese),dog,No,no preference,Yes,runaway by Kanye West
+COMP SCI 319:LEC002,LEC002,25,Engineering: Other,,,53705,37.1765,-3.5979,basil/spinach,cat,No,night owl,Maybe,Time of Our life - DAY6
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Science: Biology/Life,,French,53703,44.9019,-93.3388,basil/spinach,dog,Yes,no preference,Yes,Brazil- Declan McKenna
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Economics,53715,43.7696,11.2558,none (just cheese),cat,Yes,night owl,Yes,November Rain Guns N' Roses
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,21,Other (please provide details below).,Finance,Econ with data science certificate ,53703,41.3851,2.1734,pepperoni,dog,No,no preference,No,(It goes like) nanana by Peggy Gou
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,38.7223,-9.1393,basil/spinach,dog,Yes,no preference,No,Nice For What by Drake
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Information Systems,,"Supply chain, operation technology managment ",53703,12.4964,41.9028,pineapple,dog,No,night owl,Yes,My favorite song is probably dancing queen by ABBA
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,47.6775,11.2041,basil/spinach,dog,No,no preference,Yes,Uptown Girl by Billy Joel
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Data Science,,,53703,31.8433,117.2457,Other,dog,No,night owl,Yes,"Title: [Mrs. Shexiang] (https://www.last.fm/music/Phoenix+Legend/_/Mrs.+Shexiang)
+
+Artist: Phoenix Legend"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Data Science,,,53706,55.68,12.58,pepperoni,cat,No,night owl,Maybe,Love Lost - Mac Miller
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,economics BA,,53711,35.6895,139.6917,mushroom,dog,No,no preference,Yes,My favorite song is Favorite Song.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,18,Computer Science,,,53706,45.4642,9.19,pepperoni,cat,No,night owl,Maybe,"****************************
+The Weeknd - Save Your Tears
+****************************"
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,31.8089,120.6153,Other,cat,No,no preference,Yes,Blood Type-Viktor Tsoi
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Engineering: Biomedical,,,53703,40.4855,-106.8336,pepperoni,dog,Yes,early bird,Maybe,When it Rains it Pours by Luke Combs
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Business: Finance,,Real Estate,94024,40.7128,-74.006,sausage,dog,Yes,night owl,Maybe,
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Finance,N/A,N/A,53703,1.2,4.2,pepperoni,dog,No,no preference,Maybe,I'm gonna be (500miles) by the proclaimers
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,,Engineering: Mechanical,,,53703,39.6456,-77.4205,pepperoni,dog,No,no preference,Yes,Jimmy Cooks by Drake
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,18,Business: Finance,N/A,Data science,53706,13.8079,108.1094,basil/spinach,dog,No,early bird,Maybe,"Truoc khi em ton tai - Thang
+
+Mirror ball - Taylor Swift"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Other,Environmental Science,,53715,41.8781,-87.6298,green pepper,dog,Yes,night owl,Yes,Black Swan by BTS
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,19,Mathematics/AMEP,,,53715,44.79,-89.7,pepperoni,dog,No,no preference,No,I don't have a favorite 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Data Science,Information and data science,,53703,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,mayonaise smashing pumpkins
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,My primary major is Economics.,My secondary major is Psychology.  I have declared a certificate in data science.,53703,35.6895,139.6917,pepperoni,neither,No,no preference,Maybe,"Hype boy - New Jeans
+
+Paris in the rain - Lauv
+
+ "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,21,Data Science,,,53703,32.8328,-117.2713,Other,dog,Yes,night owl,Maybe,The Pale Moonlight - Kid Cudi
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,information science ,data science,53706,41.3851,2.1734,green pepper,dog,Yes,night owl,Yes,Jungle - Drake
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,,53715,47.0502,8.3093,macaroni/pasta,dog,No,night owl,Yes,Under Pressure by Queen and David Bowie
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53703,18.0231,-63.0482,Other,cat,No,no preference,No,Could you be loved - Bob Marley 
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Information Science,,53703,49.2827,-123.1207,pepperoni,dog,No,night owl,Yes,tell me what you want - dacelynn
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Statistics,I selected Statistics above.,I am considering double majoring in data science.,53703,60.1699,24.9384,pepperoni,dog,Yes,early bird,Yes,Mrs. Hollywood - Go-Jo
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,I am undecided but planning on potentially majoring in Data Science or at least getting a certificate. ,"I am also potentially majoring in International Studies, but am currently undecided.",53706,37.7749,-122.4194,basil/spinach,dog,Yes,night owl,Maybe,"""The Air That I Breathe"" The Hollies "
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,N/A,N/A,53706,43.0389,-87.9065,pepperoni,dog,Yes,early bird,Yes,Jungle by Andre Nickatina. Its Christian Yelich's walk up song.
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,Psychology,53715,51.5074,-0.1278,basil/spinach,cat,No,night owl,Yes,Daydreaming by Harry Styles
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,Mech E,,53715,41.1579,-8.6291,basil/spinach,dog,No,night owl,Yes,Zach Bryan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Data Science,,,53706,19.64,-156,pepperoni,dog,Yes,night owl,Yes,From Time by Drake
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Business: Actuarial,,Data Science,53706,43.485,-89.754,mushroom,neither,No,night owl,Yes,"New Romantics, Taylor Swift"
+COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information Science,No,53703,31.23,121.47,mushroom,dog,No,night owl,Maybe,"Artist: BLACKPINK, Title: Shut Down"
+COMP SCI 319:LEC001,LEC001,22,Other (please provide details below).,Information science,,53703,31.23,121.47,mushroom,dog,No,night owl,Yes,"Song: Shut Down, Artist: Black Pink"
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Engineering: Mechanical,,,53706,47.6062,-122.3321,pineapple,dog,Yes,early bird,No,Flashing Light by Kanye West
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53714,45.8713,-89.7116,pepperoni,cat,Yes,night owl,Yes,Africa by Toto
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,,53726,60.39,5.32,mushroom,dog,Yes,night owl,Yes,Heat Above by Greta Van Fleet
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Other (please provide details below).,Genetics and Genomics,,53703,36.7234,25.2822,basil/spinach,dog,Yes,early bird,Maybe,Kiss of Venus - Dominic Fike
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Data Science and Mathematics ,,53706,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Heart Throb - Pritam 
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,41.8818,-87.8367,pepperoni,dog,No,night owl,No,"Boogie Wonderland by Earth, Wind, and Fire and The Emotions"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Legal Studies major,,10075,40.7131,-74.0072,pepperoni,dog,Yes,no preference,Yes,Dancing in the Moonlight
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Computer Science,,,53703,43.0731,-89.4012,pineapple,cat,No,no preference,Yes,Hits Different - Taylor Swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Data Science,,,53715,45.4642,9.19,pineapple,dog,No,night owl,Yes,Passionfruit - Drake
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Computer Science,,Data Science,53715,25.2345,110.18,mushroom,cat,No,night owl,Maybe,Midsummer Madness by 88rising
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Engineering: Industrial,,,53706,60.8525,7.1136,pepperoni,dog,Yes,no preference,No,Boulevard of Broken Dreams by Green Day
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Industrial,,,53715,51.5074,-0.1278,none (just cheese),dog,No,night owl,Yes,"unruly NSG,Meeks"
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Data Science,,Global Health,53715,18.58,-68.41,macaroni/pasta,cat,Yes,early bird,Yes,"November Rain, Guns N' Roses"
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,44.5004,-88.0613,pepperoni,cat,Yes,early bird,Maybe,"""Take It Easy"", Eagles"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,21,Science: Biology/Life,,,53590,59.9,10.7,macaroni/pasta,cat,Yes,early bird,Yes,Trouble by Elvis Presley
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Mechanical,,,53703,44.5133,-88.0133,pepperoni,dog,No,early bird,No,Revival by Zach Bryan 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Business: Information Systems,,,53590,45.5017,73.5674,pepperoni,neither,Yes,night owl,Maybe,Teeth by 5 Seconds of Summer (please do play this one sometime!)
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,47.227,-88.164,pineapple,cat,No,night owl,Yes,stacy's mom by fountains of wayne
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Other (please provide details below).,Undecided,,53706,42.3314,-83.0458,pepperoni,dog,No,night owl,Maybe,Always Forever by Cults
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,36.3719,-94.2027,mushroom,dog,Yes,early bird,No,At the Beach by the Avett Brothers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Other (please provide details below).,Economics,,53703,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Free bird - lynyrd skynyrd
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Other (please provide details below).,Behavioral Economics,"Mathematics, Data Science Minor",53715,42.3601,-71.0589,basil/spinach,dog,Yes,early bird,No,Sitting on Top of the World - Burna Boy
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Maybe,snooze by SZA
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53706,42.584,-87.82,pepperoni,dog,Yes,no preference,Maybe,Outside- Calvin Harris
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,37.1324,24.815,pepperoni,dog,No,night owl,Yes,Thunder by Imagine Dragons 
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44.79,-89.723,pepperoni,dog,No,no preference,No,Eye of the Tiger
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Engineering: Mechanical,,,53703,-33.9249,18.4241,pepperoni,dog,No,no preference,Yes,The Adults Are Talking - The Strokes
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Science: Other,My primary major is Atmospheric and Oceanic Science.,I am considering double majoring in either Environmental Studies or Math. ,53715,40.5853,-105.0844,none (just cheese),dog,Yes,no preference,Yes,"""Tidal"" Noah Kahan"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53703,41.9,-87.6,pepperoni,dog,No,night owl,No,Revival by Zach Bryan
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC002,20,Other (please provide details below).,Economics.,Data Science.,53703,44.972,-93.51,pepperoni,dog,Yes,night owl,Maybe,Broken Clocks by SZA.
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Other (please provide details below).,Economics and Data Science,,57315,42.6256,-71.3853,pepperoni,dog,Yes,night owl,Yes,Style by Taylor Swift
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Data Science,-,Econ ,53711,1.3521,43.0731,mushroom,dog,Yes,early bird,Maybe,low-key - Nikki
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53703,61.2114,-149.7313,mushroom,cat,Yes,night owl,No,"""I Wonder"" by Kanye West"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Engineering: Mechanical,,,53726,46.5436,-87.3954,basil/spinach,cat,Yes,night owl,Yes,"Snow, Red Hot Chili Peppers "
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,43,-89.3,pepperoni,dog,No,night owl,Yes,"FIEN, Travis Scott"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Mathematics/AMEP,,Statistics,53715,27.2195,78.0216,Other,neither,No,night owl,Yes,Taylor Swift- Style
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Science: Physics,n/a,n/a,53706,31.2304,121.4737,mushroom,cat,No,night owl,Yes,"Concorde -- Black Country, New Road"
+COMP SCI 319:LEC001,LEC001,,Other (please provide details below).,economics,no,53705,39.9042,116.4074,mushroom,cat,Yes,night owl,Yes,What you mean to me -- Matthew Morrison/Laura Michelle Kelly
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC003,18,Engineering: Industrial,n/a,n/a,53706,1.3521,103.8198,pepperoni,dog,Yes,night owl,Yes,When the Day is Done by Grent Perez
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,,,53719,51.5074,-0.1278,Other,cat,No,night owl,Maybe,Father Time - Kendrick Lamar
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Business: Other,Business related but undecided.,n/a,53706,37.5326,127.0246,mushroom,dog,No,night owl,Yes,"New Jeans - ETA
+
+New Jeans - OMG"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,42.2387,-87.9596,pepperoni,neither,Yes,night owl,Maybe,Laugh Now Cry Later - Drake
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,21,Data Science,,,53703,43.4714,-110.7688,sausage,dog,Yes,night owl,Yes,My Old School - Steely Dan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53715,43.07,-89.4,sausage,dog,No,no preference,Maybe,I Hope That's True by Morgan Wallen
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,,Other (please provide details below).,Undecided.,,53706,35.6895,139.6917,sausage,cat,No,night owl,Yes,Stitches-Shawn Mendes
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,Finance,Information Systems,53718,43.6511,-79.347,sausage,dog,No,night owl,Maybe,Over by Drake
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Science: Biology/Life,,Data Science,53715,13.7563,100.5018,pepperoni,dog,No,night owl,Yes,Hurricane Kanye West
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Business: Finance,,,53715,50.0755,14.4378,pepperoni,dog,No,night owl,Yes,Nonstop by Drake
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,22,Science: Biology/Life,,"Data Science, BS",53703,37.5683,126.9978,pepperoni,cat,No,night owl,No,'Mourning' - Post Malone
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,37.44,25.37,pepperoni,cat,No,night owl,Yes,Spotless- Zach Bryan ft. The Lumineers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Business: Finance,,Business: Information Systems,53715,52.3702,4.8952,Other,cat,No,early bird,Yes,As It Was by Harry Styles
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53703,24.4882,54.3773,none (just cheese),cat,No,night owl,Yes,
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53703,42.9856,-88.0761,Other,dog,No,night owl,No,"Aries - Fools gold
+
+ "
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Data Science,,,53703,33.4484,-112.074,mushroom,cat,No,night owl,Yes,fire burning -sean kingston 
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53715,40.7128,-74.006,none (just cheese),dog,No,early bird,Yes,"Ordinaryish People, by AJR"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,"Economics, with data science certificate.",,53711,34.7466,113.6253,pepperoni,cat,Yes,no preference,Maybe,"One Last Kiss, by Utada Hikaru"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Data Science,,,53726,43.2815,-88.4091,sausage,dog,No,night owl,No,Normal Girl by SZA
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Engineering: Industrial,,,53703,39.6349,-106.5283,pepperoni,dog,Yes,night owl,Yes,Dark Necessities by The Red Hot Chilli Peppers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Mathematics/AMEP,,Statistics,53706,31.2304,121.4737,sausage,cat,Yes,early bird,Yes,Scared 2 be Lonely--Lil Tjay
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Computer Science,,Data Science,53715,42.3601,-71.0589,sausage,dog,No,night owl,Yes,The Ladder - Margolnick
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,Economics,53706,60.1282,18.6435,Other,dog,No,night owl,Maybe,Smells like teen spirit-Nirvana & Pretender- Foo Fighters (I'm never able to select my most favourite out of these two)
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Atmospheric and Oceanic Studies,,53726,44.447,88.889,pepperoni,dog,No,night owl,Yes,Julia - Mt. Joy
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,47.3886,-88.0226,pepperoni,dog,Yes,night owl,Maybe,"""Need 2"" by Pinegrove"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC004,19,Science: Other,,,53703,29.4316,106.9123,mushroom,neither,No,night owl,No,“FIREWORK” by &TEAM
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,44.5133,-88.0133,pineapple,dog,Yes,early bird,Yes,At the End of the Day -Wallows
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,,Data Science,,,53713,3.139,101.6869,basil/spinach,cat,Yes,no preference,Yes,Lady Gaga - Bad Romance
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,20,Other (please provide details below).,Economics,N/A,53703,42.3601,-71.0589,basil/spinach,dog,No,night owl,Maybe,Revival - Zach Bryan
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,night owl,Yes,"""Passionfruit"" by Drake"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Mechanical,,,53706,46.8108,-90.8182,pepperoni,dog,No,night owl,Maybe,"""My Hero"" by Foo Fighters "
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,25.3176,82.9739,pepperoni,dog,Yes,early bird,Maybe,"Safe and Sound, by Capital cities"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Languages,N/A,N/A,53706,12.9716,77.5946,basil/spinach,cat,Yes,night owl,No,baseball - Hippocampus
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,53706,42.3601,-71.0589,sausage,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,Father Stretch My Hands - Kanye West
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,18,Data Science,,,2038,,-71.0589,pepperoni,dog,Yes,night owl,Yes,Free Bird- Lynyrd Skynyrd
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Mathematics/AMEP,,"Statistics, B.S.",53703,30.2741,120.1551,none (just cheese),dog,Yes,night owl,Maybe,Careless Whisper by Wham!
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Other,Material Science and Engineering,,53706,47.608,-122.3352,sausage,dog,No,night owl,Maybe,"************
+Sixteen Tons
+************
+
+Geoff Castellucci
+
+ "
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,I am an economics major.,I may double major in data science but for now it is a minor.,53703,40.4987,-111.8188,green pepper,cat,No,night owl,Yes,Walking On A Dream by Empire of The Sun.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Other (please provide details below).,economics,,53706,45.0938,-93.4976,Other,dog,No,no preference,Maybe,Drift Away - Uncle Kracker
+COMP SCI 319:LEC004,LEC004,23,Science: Other,Economics,nope,53703,41.7407,123.4399,pepperoni,cat,No,night owl,No,Kiss Goodbye
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Finance,,,54143,37.3891,-5.9845,pepperoni,dog,Yes,early bird,No,The House of the Rising Sun - The Animals 
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,46.5,-94.3,sausage,dog,No,night owl,Yes,As She's Walking Away by Zac Brown Band
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Engineering: Mechanical,,,53703,40.7128,-74.006,pepperoni,dog,Yes,night owl,Yes,"Junio, Maluma
+
+ "
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,54636,41.8781,-87.6298,mushroom,dog,No,early bird,Yes,Cherry by Harry Styles
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53597,44.7866,20.4489,macaroni/pasta,cat,No,night owl,Yes,bad dream baby - hippo campus
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Other (please provide details below).,Economics ,N/A,53703,43,-89,sausage,dog,No,early bird,Maybe,Cough Syrup - Young the Giant 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Biomedical,,,53706,40.7865,-74.3921,sausage,dog,No,night owl,Yes,"Fancy
+
+Drake"
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Mechanical,,,53706,-8.6786,115.4556,pepperoni,dog,Yes,no preference,Maybe,Hotel California-Eagles
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Engineering: Mechanical,,,53703,40.7131,-74.0072,pineapple,dog,Yes,night owl,Yes,Freestyle by Lil Baby 
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Other (please provide details below).,Deciding between Biology and Biomedical Engineering,,53706,45.2658,-111.3003,pepperoni,dog,No,night owl,No,Best of You by the Foo Fighters
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,20,Other (please provide details below).,Economics (Minor in Data Science),,53715,43.0722,-89.4012,sausage,dog,Yes,night owl,No,Art of Living - Mat Kerekes
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,51.5035,-0.1278,macaroni/pasta,neither,No,night owl,Yes,Movin' Out by Billy Joel
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53703,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,I Know - Travis Scott
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Physics,NA,Currently in astrophysics but trying to transfer into the school of Engineering for Mechanical Engineering. ,53703,21.3069,-157.8583,sausage,cat,Yes,no preference,Maybe,"It's my Life, Bon Jovi"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,,Computer Science,,Maybe majoring in data science but I might minor it.,53706,60.1282,18.6435,none (just cheese),cat,No,no preference,Yes,Mad at the World - Heffron Drive
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Science: Physics,,,53706,44.9778,-93.265,basil/spinach,cat,No,night owl,Yes,Out of My League - Fitz and the Trantrums
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,20,Business: Other,,,53726,43,-89,pepperoni,neither,No,no preference,Maybe,post malone
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,21,Computer Science,,,53705,31,121,pepperoni,cat,No,night owl,Yes,Something Just Like This - The Chainsmokers & Coldplay
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics and Data Science.,,53703,26.6141,-81.8258,pepperoni,dog,Yes,night owl,Maybe,"Sweet Caroline, Neil Diamond"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,25,Other (please provide details below).,Zoology Major,n/a,53719,41.8781,-87.6298,basil/spinach,dog,No,night owl,Yes,"Dirty Little Secret
+
+Song by The All-American Rejects"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,39,116,mushroom,cat,Yes,night owl,Maybe,see you again
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,Fear and Fridays - Zach Bryan
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,40.7128,-74.006,pepperoni,dog,No,early bird,Maybe,Holy Ground by Taylor Swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53703,41.8781,-87.6298,mushroom,dog,No,no preference,No,"Wish You Were Here - Pink Floyd
+
+ "
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53715,38.5733,-109.5498,pineapple,dog,No,early bird,No,Don't You Worry Child by Swedish House Mafia
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53715,46.2044,6.1432,sausage,dog,Yes,no preference,No,"""Woods"" by Mac Miller"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Other (please provide details below).,"Economics major, data science minor ",,53703,38.4187,27.1296,green pepper,cat,Yes,no preference,No,Piano Man by Billy Joel
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,18,Engineering: Industrial,,,53705,24.7136,46.6753,pepperoni,dog,Yes,early bird,No,"Mohammed Abdu- Artist
+
+Wienak ya darb al mahaba"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,40,Data Science,"Data Science is my primary major.
+
+I am a returning student.  My past Major was AMEP.  Data Science majors didnt exist then.  It fits better with what I was working towards.  I love probablility and statistics.",NA,53705,43,88,sausage,cat,Yes,no preference,No,"Moonlight Sonata Movement #1 played on the piano vs the radio while it rains or at night with the windows open is awesome!!!!!!
+
+ 
+
+ 
+
+ 
+
+Movement #3 will blow your mind.
+
+ 
+
+If you dont like any of those, louisiana harmonica is good."
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,NA,NA,53703,45.8733,-63.5841,pepperoni,cat,No,early bird,Maybe,"Revival, Zach Bryan "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Other (please provide details below).,"Still deciding from Mathematics, Statistics, and Economics.",,53706,39.9042,116.4074,sausage,neither,Yes,early bird,Maybe,"Title: Croatian Rhapsody
+
+Artist: Tonci Huljic"
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Science: Other,Nursing,Global Health minor ,53706,43.8376,10.4951,pepperoni,dog,Yes,night owl,Maybe,Gimme! Gimme! Gimme! by ABBA
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics (Math Emphasis) or Math for Econ and finance (still thinking),53706,55.7558,37.6173,pepperoni,dog,No,no preference,Maybe,Safe and Sound by Capital Cities
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Science: Other,Atmospheric and Oceanic Sciences,,53711,48.8566,2.3522,pineapple,dog,Yes,night owl,Maybe,Lady May by Tyler Childers
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,43.0742,89.3838,macaroni/pasta,dog,Yes,night owl,Yes,Little Wing - Jimi Hendrix
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53711,43.0731,-89.4012,sausage,dog,Yes,night owl,Yes,"Encore by the Red Hot Chili Peppers
+
+ "
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Other (please provide details below).,undecided,,53703,40.7306,73.9352,basil/spinach,dog,No,night owl,Yes,"Erase Me, Lizzie McAlpine"
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,45.5152,122.6784,pepperoni,dog,Yes,night owl,Yes,Pennies - Smashing Pumpkins
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,,Engineering: Industrial,,,53715,44.4047,8.9291,sausage,dog,Yes,early bird,Yes,"You Don't Love Me (No, No, No) - Dawn Penn"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53715,40.7128,-74.006,pepperoni,dog,Yes,early bird,No,"""What You Know"" by Two Door Cinema Club"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC003,18,Data Science,,,53706,18.7897,98.9844,pineapple,dog,No,night owl,Yes,"One of my favorite songs is ""Bahamas"" by HARBOUR. "
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Computer Science,,,53704,43.0739,-89.3852,pepperoni,dog,Yes,night owl,Maybe,Bang Bang - K'NAAN
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,nuclear engineering,.,53715,47.6,-122.33,sausage,dog,Yes,night owl,Yes,"smells like teen spirit 
+
+-nirvana"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,53703,39.0742,21.8243,mushroom,dog,No,night owl,Yes,Cardigan - Don Toliver
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Business: Other,"Other: Accounting
+
+ ",Business- Information Systems,53726,51.5074,-0.1278,none (just cheese),dog,Yes,early bird,No,Abba- Dancing Queen
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,I am planning to major in neurobiology.,"Data Science
+
+total 2 majors. Neurobiology and Data Science.",53706,36.9741,-122.0288,none (just cheese),cat,Yes,no preference,Maybe,Learn To Fly - Foo Fighters
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,42.3601,-71.0589,pepperoni,cat,No,night owl,Maybe,Show No Regret by Daniel Caesar
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,17,Engineering: Mechanical,,,53706,57.6202,-133.2372,pineapple,dog,No,night owl,Maybe,I Wanna Dance with Somebody by Whitney Houston
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,21,Science: Other,Atmospheric and Oceanic Sciences,N/A,53726,42.7,-89.8679,none (just cheese),cat,No,night owl,Maybe,Might Be Right - White Reaper
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics ,N/a,53703,25.1931,55.279,pepperoni,neither,No,early bird,No,6th Sense-Kodak Black
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Data Science,,,53706,40.4168,-3.7038,basil/spinach,dog,Yes,early bird,No,Polaris Remix Saiko ft. Mora Feid Quevedo
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,42.3601,-71.0589,pineapple,cat,No,night owl,Yes,"zz melt - Jagger Finn
+
+ "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Data Science,,,53703,44.7394,-93.1258,pepperoni,dog,No,night owl,No,"Self Care, Mac Miller"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,19,Other (please provide details below).,international studies,,53703,41.3851,2.1734,pineapple,dog,Yes,no preference,Yes,"American Pie, Don Mclean"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53706,43.039,-87.906,pepperoni,neither,No,no preference,Yes,Flashing Lights - Kanye West
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Engineering: Industrial,N/A,N/A,53715,88.384,43.0058,pepperoni,dog,Yes,night owl,Maybe,"Stick Season 
+
+Noah Kahan"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC003,19,Data Science,,,53713,35.6895,139.6917,sausage,cat,No,night owl,Yes,Its You by Keshi
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Data Science,,,53715,45.9141,-89.2558,mushroom,dog,No,no preference,Yes,"Making Eyes by Archers. Madison based metalcore band! (beware of the screamo sections to some of their songs, lol)"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Engineering: Biomedical,,,53706,22.9068,43.172,mushroom,dog,Yes,early bird,Maybe,Out of Reach- BoywithUke
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,21,Business: Actuarial,,Risk Management & Insurance,53703,43.0731,-89.4012,green pepper,dog,Yes,early bird,No,Layla by Eric Clapton
+COMP SCI 319:LEC004,LEC004,24,Other (please provide details below).,Econ,,53703,39.9042,116.4074,pineapple,neither,No,night owl,Maybe,"Savage Daughter  
+
+Sarah Hester Ross"
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Business: Finance,,,53703,40.7128,-74.006,pineapple,dog,No,night owl,Yes,FE!N- Travis Scott
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Finance,,I am doing a data science certificate and planning on a double major in information systems.,53703,41.8781,-87.6298,mushroom,dog,No,early bird,No,"Hozier 
+
+Cherry Wine"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,,53711,21.3069,-157.8583,sausage,dog,Yes,night owl,Yes,I KNOW ? - Travis Scott
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,18,Engineering: Industrial,,,55337,48.8566,2.3522,mushroom,dog,No,night owl,Yes,The Other Side of the Door - Taylor Swift
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Data Science,None,Biology,53706,52.3702,4.8952,Other,dog,Yes,early bird,No,Counting Stars by One Republic
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53703,1.3521,103.8198,pineapple,cat,Yes,night owl,Maybe,Someone Like You by Adele 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53726,44.988,-87.243,sausage,dog,No,early bird,No,Chattahochee by Alan Jackson
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,,,53705,23.5859,58.4059,pepperoni,neither,No,no preference,Maybe,
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,,Data Science,,Economics,53706,1.3521,103.8198,mushroom,cat,No,night owl,Yes,Cupid by Fifty Fifty
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Business: Other,Marketing,,53703,41.3851,2.1734,basil/spinach,dog,No,no preference,No,What is Love by Haddaway
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Data Science,,,53706,43.1132,-87.9997,sausage,cat,Yes,early bird,Yes,Viva la Vida by Coldplay
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Other (please provide details below).,Urban Studies,,53715,37.9838,23.7275,pepperoni,cat,No,no preference,No,Eat The Rich by Aerosmith
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Yes,"""If I Know Me"" by Morgan Wallen"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Engineering: Industrial,,,53706,18.3288,-66.9713,pineapple,dog,No,night owl,No,Dancing Queen - Abba
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Industrial,,,53706,43.0739,-89.3852,pepperoni,dog,No,no preference,Maybe,Be Happy by 347aidan
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Biology/Life,,,53726,30.2741,120.1551,pepperoni,cat,No,night owl,Maybe,N/A. I don't have a favorite song.
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,17,Data Science,,,53706,39.9042,116.4074,sausage,dog,No,night owl,No,"Red Eye 
+
+Justin Bieber"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,40.7128,-74.006,Other,dog,Yes,night owl,Maybe,September by Earth Wind and Fire
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Other (please provide details below).,Psychology,,53706,45.9857,-123.9082,pepperoni,dog,No,early bird,No,"""Stay"" by Post Malone"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53711,43.0739,-89.3852,Other,dog,No,night owl,Yes,Little Wing by Jimi Hendrix
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Mathematics/AMEP,,English - Creative Writing,53715,41.8661,-88.107,pepperoni,neither,No,early bird,Maybe,Unending Stream of Life -- David Maslanka
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,17,Data Science,,,53711,32.2259,35.2549,none (just cheese),cat,No,night owl,No,Dakiti - Bad Bunny
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,17,Other (please provide details below).,Computer Science,"Along with CS, I plan to do Data Science, and maybe a certificate on Marketing.",53706,29.1523,48.1212,mushroom,dog,Yes,early bird,Maybe,Dance Monkey - Tones and I
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,20,Business: Finance,,"Economics, Information Systems",53703,43.0731,-89.4012,pepperoni,dog,No,night owl,No,White Room - Cream
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Industrial,N/A,N/A,53706,51.1785,-115.5743,none (just cheese),cat,No,night owl,Yes,green light by lorde
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Science: Physics,,"Data Science, Mathematics",53706,25.2048,55.2708,pepperoni,dog,Yes,night owl,No,AM Gold by Train
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC001,20,Engineering: Mechanical,,,53925,55.9533,-3.1883,pepperoni,cat,No,early bird,Yes,Wonderwall by Oasis 
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC002,19,Other (please provide details below).,economics,,53703,33.6052,-117.8886,pepperoni,dog,No,early bird,Maybe,23 chayce beckham
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Mathematics/AMEP,,,53703,45.374,-84.9556,basil/spinach,dog,Yes,night owl,Maybe,Fire and Rain by James Taylor
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Other (please provide details below).,Atmospheric and Oceanic Science,Mathematics ,53715,45.2464,-93.3028,Other,dog,Yes,early bird,Maybe,Mr. Blue Sky by Electric Light Orchestra
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,N/A,N/A,53715,43.0731,-89.4012,sausage,dog,No,night owl,Maybe,What You Know - Two Door Cinema Club
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Statistics,,,53706,44.3,-88.4,pepperoni,dog,Yes,early bird,Maybe,"Sing About me, I'm dying of thirst by Kendrick Lamar"
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,22,Business: Actuarial,,"Finance, Risk Management and Insurance",53715,40.015,-105.2705,pepperoni,dog,No,night owl,Yes,Sweet Child O' Mine
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,21,Data Science,,,53711,37.664,127.9,pepperoni,dog,Yes,night owl,Yes,Never go wrong
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,53706,48.8566,2.3522,pepperoni,dog,No,night owl,Yes,moonwalking in the Calabasas by ddg.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC004,20,Engineering: Mechanical,,,53703,39.9481,-74.077,sausage,dog,No,night owl,Yes,Set fire to the rain - Adele
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,18,Data Science,,,53706,25.1204,121.5103,pineapple,cat,No,early bird,No,Studio Ghibli movie music
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Information Systems,NA,Real Estate,53703,18.3368,-64.7281,mushroom,cat,Yes,no preference,Yes,"You Proof, Morgan Wallen"
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC001,18,Engineering: Mechanical,,,53706,63.4195,-18.9986,none (just cheese),dog,Yes,no preference,Yes,Ticking by Zach Bryan
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Science: Biology/Life,,,53706,45.2646,-111.2533,pineapple,dog,Yes,early bird,No,Romeo and Juliet by the Dire Straits
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,37.7654,-122.4511,pepperoni,dog,No,early bird,No,All I Do - Stevie Wonder
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Astronomy/Physics,Physics,53711,43.0731,-89.4012,Other,dog,Yes,night owl,Maybe,Bank Account 21 Savage
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,Idk if this counts but I'm doing the game design certificate,53706,38.9072,-77.0369,pepperoni,cat,No,night owl,Maybe,Osmosis by Good Kid
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Industrial,,,53703,40.4168,-3.7038,sausage,dog,Yes,early bird,No,Pepas by farruco
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Data Science,,Statistics,53706,47.1212,-88.5645,pepperoni,dog,No,early bird,Maybe,Party in the USA
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Industrial,,,53706,43.6047,1.4442,Other,dog,Yes,night owl,Yes,Cigarettes out the window-Tv Girl
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,,Business ,53703,27.0993,-82.4315,pepperoni,dog,Yes,no preference,Yes,Island In The Sun
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Science: Biology/Life,,,53706,64.9631,-19.0208,mushroom,cat,No,night owl,Maybe,cardigan - Taylor Swift
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,,Other (please provide details below).,Journalism,,53706,41.3974,2.13,pepperoni,cat,Yes,no preference,Maybe,Maps - Yeah Yeah Yeahs
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,,Other (please provide details below).,Economics,,53703,47.608,122.3352,Other,cat,Yes,night owl,Yes,Revival Zach Bryan
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC004,18,Statistics,Mathematics,,53706,50.8476,4.3572,pepperoni,dog,Yes,early bird,Maybe,"New Person, Same Old Mistakes - Tame Impala"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC002,19,Computer Science,N/A,N/A,53706,37.8715,112.5512,sausage,neither,Yes,no preference,Maybe,N/A
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,35.9802,-75.6421,sausage,dog,No,early bird,Yes,Gypsy - Fleetwood Mac
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,19,Engineering: Mechanical,,,53726,45.4408,12.3155,sausage,dog,No,night owl,Yes,Sultans of Swing by Dire Straights
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,40.7128,-73.9352,pepperoni,dog,Yes,night owl,Yes,Virtual Insanity - Jamiroquai
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6403,-106.3709,sausage,dog,Yes,no preference,Maybe,Whiskey Friends by Morgan Wallen
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Engineering: Mechanical,,,53711,39.1907,-106.8192,Other,neither,No,early bird,No,Try that in a small town - Jason Aldean
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Other (please provide details below).,Undecided,,53703,40.7721,-73.9578,none (just cheese),dog,No,night owl,Yes,Company by Drake
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Data Science,,,53706,41.2974,-96.6059,sausage,dog,Yes,night owl,Yes,m.y l.i.f.e. J cole 
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Mechanical,,,53703,-33.9014,151.0576,pepperoni,dog,No,no preference,Yes,Zach Bryan - Revival 
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC001,21,Business: Actuarial,,statistics ,53703,23.1291,113.2644,pineapple,dog,Yes,night owl,Yes,love story Taylor swift
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Other (please provide details below).,I am currently undecided but I am seriously considering Data Science at the moment.,,53715,48.7786,2.45,Other,dog,Yes,night owl,Yes,My Eyes - Travis Scott
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC004,20,Science: Biology/Life,,,53703,-81.7136,-109.3253,pineapple,neither,No,no preference,Maybe,"capybara song
+
+just search it and you will find"
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,19,Computer Science,,,53715,41.8781,-87.6298,none (just cheese),dog,No,no preference,No,Too comfortable - Future
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,19,Engineering: Other,Civil Engineering,Spanish,53715,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Maybe,Aint no mountain high enough - Marvin Gaye
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,22,Computer Science,,Data Science,53703,23.1291,113.2644,basil/spinach,cat,No,night owl,Yes,Bohemian Rhapsody - Queen
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53715,49.1747,-123.0194,green pepper,dog,No,night owl,Yes,"Gangsters Paradise
+
+ "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Science: Other,Double majoring in Biochemistry and Data Science.,"Data Science, Biochemistry ",53703,32.7157,-117.1611,Other,dog,Yes,night owl,Yes,Don't Stop; Fleetwood Mac
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53715,43.0389,-87.9065,sausage,dog,No,early bird,Maybe,505 - Artic Monkeys
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Engineering: Industrial,,Business,53706,46.2388,-97.3636,sausage,dog,No,night owl,Maybe,Solo - Future
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,Data Science,53715,41.8781,-87.6298,Other,cat,No,night owl,Yes,Heartless by The Weeknd
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Statistics,,"Econ, Statistics",53706,55.9502,-3.1875,sausage,dog,Yes,night owl,Yes,Demons by Imagine Dragons
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Computer Science,,My second major is Data Science. My minors are Consulting and Leadership.,53711,34.0522,-118.2437,macaroni/pasta,cat,No,night owl,Yes,Consume by Chase Atlantic
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53706,41.9028,12.4964,sausage,dog,Yes,night owl,Yes,Secrets by The Weekend 
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,18,Business: Finance,,"Finance, Real Estate",53706,38.8707,-106.9809,sausage,dog,Yes,night owl,Maybe,Look after you - The Fray
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Engineering: Mechanical,,,53715,38.9828,-76.8819,basil/spinach,neither,No,night owl,Maybe,The Vampire Masquerade by Peter Gundry
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,18,Engineering: Other,,,53713,43.0663,-89.4049,pepperoni,dog,No,night owl,Yes,
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,19,Engineering: Mechanical,1,1,53711,37,-122,sausage,cat,No,night owl,Yes,For Whom the Bell Tolls by Metallica
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,55.6761,12.5683,sausage,cat,No,no preference,Maybe,Poe Mans Dreams by Kendrick Lamar
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,,Data Science,,,53703,43,87,sausage,dog,Yes,night owl,Maybe,Better ma. By Pearl jam
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,23,Other (please provide details below).,Information Science,,53703,32.0853,34.7818,pepperoni,dog,No,early bird,No,Funkytown by Lipps
+"COMP SCI 220:LAB343, COMP SCI 220:LEC004",LEC001,19,Business: Actuarial,,,53703,48.86,2.35,pepperoni,cat,No,night owl,Yes,imperial - j^p^n
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,,Statistics,53706,22.3964,114.1095,basil/spinach,neither,No,no preference,Maybe,"""Put Your Records On"" by Corinne Bailey Rae"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Other,Engineering Physics,,53703,44.9204,-93.2802,basil/spinach,dog,Yes,early bird,No,Houdini - Foster the People
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,,53703,40.4168,-3.7038,basil/spinach,dog,No,night owl,Yes,19.10 by Childish Gambino
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Data Science,,data science,53703,56,51,mushroom,cat,No,night owl,Maybe,"too many night, metro boomin"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Other (please provide details below).,My major is Economics with Mathematics Emphasis (BS),N/A,53705,51.5074,-0.1278,green pepper,dog,Yes,early bird,Maybe,"English language
+
+Return of the Mack by Mark Morrison
+
+ "
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Engineering: Mechanical,,,53706,45.8,89.7,pepperoni,dog,Yes,night owl,Maybe,Hannukah Song- Adam Sandler
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Business: Other,,,53715,45.9495,-89.151,macaroni/pasta,dog,Yes,early bird,No,More Than a Feeling by Boston
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,18,Engineering: Mechanical,,,57703,74.8,41.33,mushroom,dog,No,night owl,No,Dancing with Myself  by Billy Idol
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53715,29.9511,-90.0715,none (just cheese),cat,No,night owl,No,Shut up and Dance -Walk the moon
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,N/A,Risk Management & Insurance,53711,29.9511,-90.0715,pepperoni,dog,Yes,night owl,Maybe,The jeopardy song
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,43.0389,-87.9065,pepperoni,neither,No,night owl,Yes,"After Last Night by Bruno Mars, Anderson Paak, Silk Sonic "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Accounting,Information Systems,53703,41.9028,12.4964,mushroom,cat,Yes,early bird,Yes,"Steady Love, Ben Rector"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Engineering: Mechanical,,,53726,53.4645,-2.2896,pineapple,cat,Yes,night owl,Yes,"Juke Box Hero 
+
+Foreigner"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Mathematics ,Data Science ,53715,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,"""The Changing Times"" by Earth, Wind & Fire "
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,23,Engineering: Mechanical,,,53703,40,-76,Other,dog,No,early bird,Maybe,Better Now - Post Malone
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,N/A,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Data Science,,Economics,53706,43.0722,89.4008,pepperoni,cat,Yes,night owl,Yes,Caribbean Queen (No More Love On The Run) By Billy Ocean
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Business: Other,,,53706,41.8847,-87.6166,pepperoni,dog,No,night owl,Yes,Overdue (feat. Travis Scott) by Metro Boomin
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Genetics,Certificate: Data Science & Global Health,53715,41.8781,-87.6298,Other,dog,No,night owl,Yes,Pursuit of Happiness- Kid Cudi
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53706,43.0592,141.3555,sausage,dog,No,no preference,Maybe,Top of the World - Carpenters
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,43.7696,11.2558,sausage,dog,No,night owl,Yes,Little wing Jimi Hendrix
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,43.2286,-88.1104,pepperoni,dog,Yes,early bird,Yes,"Let's Get It On, Marvin Gaye"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Engineering: Industrial,N/A,Entrepreneurship certificate. ,53715,41,87,pepperoni,dog,Yes,early bird,Maybe,Margaritaville - Jimmy Buffett 
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,18,Data Science,,Possibly business finance ,53706,35.2488,24.9132,pepperoni,dog,Yes,night owl,Maybe,Letter from Houston by Rod Wave 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,no preference,Maybe,Virtual Insanity - Jamiroquai
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,20,Other (please provide details below).,My major is Information Science.,I'd like to pursue the Data Science Certificate or major as well.,53703,38.1157,13.3615,mushroom,cat,No,early bird,Yes,Snooze by SZA
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53703,23,114,Other,neither,No,no preference,Maybe,
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Engineering: Mechanical,,,53706,43.1101,-87.9074,sausage,dog,No,night owl,Maybe,God's Plan- Drake
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Data Science,,,53705,-19.9173,-43.9346,sausage,dog,Yes,no preference,No,Clube da Esquina 7 - Milton Nascimento
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Data Science,,Journalism,53706,30.3935,-86.4958,macaroni/pasta,dog,Yes,night owl,Maybe,One Man Band by Old Dominion
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Computer Science,,,28431,48.8647,2.349,pineapple,dog,No,night owl,Yes,Here with me by dv4d
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Data Science,,,53703,38.9433,-94.7342,pineapple,cat,No,early bird,Yes,Sun to Me- Zach Bryan
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Engineering: Other,,,53703,40.7608,111.891,pepperoni,dog,Yes,night owl,No,Alors On Danse - Stromae
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,18,Data Science,,,53706,40.7128,-74.006,sausage,dog,No,night owl,Yes,Impossible - Travis Scott
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53706,64.8367,-147.7389,Other,dog,No,early bird,Yes,Back in Black by AC/DC
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53701,45.1027,-93.4649,sausage,cat,Yes,early bird,Maybe,"I prefer anything country, but my favorite song right now is Life Changes by Thomas Rhett. "
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Biomedical,,,53703,35.2271,-80.8431,pineapple,dog,No,early bird,No,Amazing by Rex Orange County
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Other,I am currently undecided but interested in the STEM and Business fields,,53706,37.3891,-5.9845,basil/spinach,dog,Yes,no preference,Yes,"""If I Can Dream"" by Elvis Presley"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,,Engineering: Mechanical,,,53703,50.0755,14.4378,pepperoni,neither,No,early bird,Maybe,"What You Won't Do For Love by Bobby Caldwell
+
+ "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics,Data Science,53703,-37.8136,144.9631,pepperoni,dog,Yes,no preference,Maybe,Need to know -John Newman
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Biomedical,BME,N/A,53711,22.54,114,sausage,dog,Yes,no preference,No,A sky full of stars - coldplay
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,18,Engineering: Industrial,,,53706,36.1627,-86.7816,sausage,dog,Yes,night owl,Maybe,Like We Used To by A Rocket To The Moon
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Engineering: Biomedical,,,53719,47.6062,-122.3321,pepperoni,cat,Yes,night owl,Yes,Ex-factor by Lauryn Hill
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Other (please provide details below).,Economics,,53703,53.3501,6.2662,none (just cheese),dog,Yes,night owl,Yes,Heavy Eyes by Zach Bryan
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,21,Business: Actuarial,,"Finance, RMI, Economics",53726,42.9765,88.1084,pineapple,dog,Yes,early bird,No,"7 & 7, Turnpike Troubadours"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,22,Other (please provide details below).,Education Studies,Psychology,53703,35.8714,128.6014,pepperoni,cat,No,no preference,Yes,Top of the World - Carpenters
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,18,Other (please provide details below).,Economics,,53706,43,-89,pepperoni,dog,Yes,night owl,Yes,Baby Shark
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Data Science,,Mathematics,53706,37.9659,23.7325,sausage,cat,Yes,night owl,Yes,No Surprises by Radiohead
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,21,Science: Other,environmental sciences,,53703,48.1351,11.582,pepperoni,cat,No,no preference,Maybe,I lived-One Republic
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Data Science,,Mathematics,53715,41.8781,-87.6298,pineapple,dog,No,night owl,No,All My Love by Noah Kahan
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,20,Engineering: Biomedical,,,53715,36.16,-86.78,pepperoni,dog,Yes,early bird,No,I Remember Everything by Zach Bryan
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,early bird,Maybe,Take a Walk by Passion Pit
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Data Science,,CS,53706,26.0745,119.2965,green pepper,cat,Yes,night owl,Yes,We will Rock you
+COMP SCI 319:LEC003,LEC003,27,Other (please provide details below).,Information Science,No,53705,19.7418,-155.8444,none (just cheese),cat,No,no preference,Maybe,Don't look back in anger 
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,53.3456,-6.2559,basil/spinach,dog,Yes,no preference,Yes,"Stick Season, Noah Kahan"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,21,Business: Actuarial,,Risk Management & Insurance,53703,41.3851,2.1734,pepperoni,dog,No,night owl,Maybe,The Other Side of the Door by Taylor Swift
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,22,Science: Physics,,"Mathematics in the Physical and Biological Sciences(BS), Computer Science Certificate ",53703,42.8501,-106.3252,pepperoni,cat,Yes,early bird,Maybe,Dopesmoker - 2022 Remastered Version - Sleep
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC004,20,Other (please provide details below).,Psychology and Spanish,,53701,45.891,-123.9619,basil/spinach,dog,Yes,early bird,Yes,Ella Baila Sola by Peso Pluma
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,My primary field of study is Economics but I am also pursuing a certificate in data science. ,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,Hey driver - Zach Bryan
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,30.2672,-97.7431,Other,dog,No,no preference,No,
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,20,Engineering: Mechanical,,,53703,39.7392,-104.9903,pepperoni,dog,Yes,night owl,Maybe,Nikes on my feet Mac Miller
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Computer Science,,,53703,40.2436,-109.01,pepperoni,dog,No,no preference,Maybe,RAVE RATS VOLUME 1: INTERDIMENSIONAL LIFE by ooxygen
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Information Systems,,,53703,41.8781,-87.6298,basil/spinach,dog,Yes,night owl,Yes,Margaritaville by Jimmy Buffet
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53715,24.4539,54.3773,pepperoni,cat,Yes,early bird,No,IDK
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Engineering: Other,,,53703,48.2082,16.3738,sausage,dog,Yes,night owl,No,Shallow - Lady Gaga
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Business: Information Systems,,BUS: Finance,53706,44.9537,-93.09,sausage,dog,No,night owl,No,"Baby, Justin Bieber"
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,20,Computer Science,,,53703,42.3601,-71.0589,pineapple,dog,No,night owl,Maybe,"Erase Me, Kid Cudi"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53715,44.8945,-93.6728,pepperoni,dog,No,night owl,Maybe,Hey Driver- Zach Bryan
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53706,47.7502,-90.3356,sausage,dog,No,no preference,Yes,"Fly me to the moon, Frank Sinatra"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Engineering: Industrial,,,53706,59.9139,10.7522,pepperoni,dog,Yes,night owl,Yes,Normal Girl - SZA
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC001,18,Data Science,,,53706,50.0755,14.4378,Other,dog,No,night owl,Yes,Break From Toronto - PARTYNEXTDOOR
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Business: Information Systems,,Accounting,53597,25.7617,-80.1918,pepperoni,cat,No,no preference,Maybe,Graduation - Kanye West
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53703,39.74,-104.98,mushroom,cat,Yes,night owl,Yes,temperature-sean paul
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Biomedical,,,53706,45.4408,12.3155,mushroom,cat,Yes,no preference,No,Santeria by Sublime
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Mechanical,,,53703,45.056,92.8088,basil/spinach,dog,Yes,early bird,No,More Than A Feeling by Boston
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,21,Business: Other,Marketing,,53703,41.4174,2.2122,mushroom,dog,No,early bird,Yes,One of my favorite songs is Pull me out of this by Fred Again
+"COMP SCI 220:LAB344, COMP SCI 220:LEC004",LEC004,20,Computer Science,,,53703,35.6895,139.6917,mushroom,cat,Yes,night owl,Yes,Never gonna give you up -Rick Astley
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,18,Data Science,,,53706,37.4605,-122.1703,sausage,dog,No,no preference,Yes,saturday night
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Business: Information Systems,,Finance,53703,6.5244,3.3792,Other,cat,Yes,early bird,No,The Color Violet - Tory Lanez
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC003,20,Data Science,Comm Arts,no,53703,39.9042,116.4074,pineapple,dog,No,night owl,Maybe,For Tonight --- Giveon
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,19,Engineering: Industrial,,,53703,39.74,-104.98,mushroom,dog,Yes,night owl,No,"vienna, Billy Joel"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Engineering: Mechanical,,,53706,49.2764,-0.7056,sausage,dog,Yes,early bird,Maybe,Stairway to Heaven by Led Zeppelin
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Science: Other,economics,DS,53703,31.2304,121.4737,sausage,dog,No,night owl,Yes,“the greatest” Lana Del Rey
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53706,17.385,78.4867,pepperoni,dog,No,early bird,Maybe,Saint Pablo - Kanye West
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Science: Other,,,53703,44.424,-124.069,basil/spinach,dog,No,night owl,Yes,Waltz No. 2 by Dmitri Shostakovich
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Data Science,,,53715,42.3601,-71.0589,Other,dog,Yes,night owl,Maybe,All Your'n by Tyler Childers
+COMP SCI 319:LEC003,LEC003,,Statistics,,,53715,24.18,102.98,pineapple,neither,Yes,no preference,No, Never gonna give you up
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53703,42.3601,-71.0589,mushroom,dog,No,no preference,Yes,"Heavy Eyes, Zach Bryan
+
+ "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Science: Biology/Life,,,53703,35.6895,139.6917,none (just cheese),cat,No,night owl,No,Cake by the Ocean by DNCE
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,19,Other (please provide details below).,Economics,Political Science,53715,40.7128,74.006,sausage,dog,No,night owl,Yes,Stacey's Mom
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Data Science,,,53706,22.3312,103.838,pineapple,dog,Yes,no preference,Maybe,"""2 soon"" - keshi"
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,18,Computer Science,,Intend to double major in Data Science,53706,41.8844,-87.6191,pineapple,dog,No,night owl,Yes,1998 by Monsune
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate ,53715,40.7128,-74.006,pepperoni,cat,No,night owl,Yes,"It’s all so incredibly loud, Glass Animals"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,43.0389,-87.9065,pepperoni,dog,No,no preference,Yes,Immortal by 21 Savage
+"COMP SCI 220:LEC004, COMP SCI 220:LAB344",LEC004,18,Data Science,,,53706,41.0082,28.9784,none (just cheese),dog,No,night owl,Yes,Little Dark Age by MGMT
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Computer Science,,,53703,43.0731,-89.4012,pepperoni,dog,Yes,early bird,No,Romeo and Juliet by Peter McPoland
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,20,Data Science,Information Systems,,53706,59.9139,10.7522,Other,dog,No,early bird,Yes,"Deep Down(ft. Never Dull) - Alok
+
+Give it to Me - Timbaland"
+COMP SCI 319:LEC002,LEC001,,Data Science,,,53593,55.9502,-3.1875,pineapple,neither,No,night owl,Maybe,I Will Survive by Gloria Gaynor
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,20,Data Science,,Economics,53703,39.9042,116.4074,pineapple,cat,No,no preference,Yes,LMLY
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Other (please provide details below).,Biochemistry,,53706,51.5099,-0.1278,basil/spinach,dog,Yes,early bird,Yes,Burn Burn Burn by Zach Byran
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8894,12.4924,sausage,dog,No,early bird,Yes,"Houstonfornication, Travis Scott"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53703,42.3249,-71.0706,sausage,dog,No,night owl,Maybe,Blood on my jeans - Juice Wrld
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,19,Engineering: Biomedical,,,53703,18.582,-68.4055,pepperoni,dog,Yes,night owl,No,Rod Wave - Call Your Friends 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Business: Finance,,,53715,41.3851,2.1734,sausage,dog,No,night owl,No,Closer By the Chainsmokers
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Science: Other,,,53706,42.3601,-71.0589,Other,dog,No,no preference,No,"Electric Feel, MGMT"
+"COMP SCI 220:LAB333, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,40.7128,-74.006,none (just cheese),dog,No,night owl,Yes,I dont listen to music
+"COMP SCI 220:LEC003, COMP SCI 220:LAB333",LEC003,19,Business: Actuarial,,Risk Management and Insurance,53703,42.3012,-71.3157,sausage,dog,Yes,night owl,No,Sunday by Earl Sweatshirt
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,22,Data Science,.,.,53706,37.5,127,mushroom,neither,No,early bird,No,snowman - seung hwan jeong
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,sausage,cat,No,night owl,Yes,
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Data Science,Economics,Data Science,53706,22.3964,114.1095,none (just cheese),dog,No,night owl,Yes,Black and White by Juice Wrld
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Actuarial,,"Statistics, Risk Management and Insurance, Certificate in Mathematics",53719,43.0731,-89.4012,pepperoni,dog,No,night owl,Yes,"Sovereign Light Cafe, Keane"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC002,20,Computer Science,,,53705,31,-238,pepperoni,dog,No,night owl,Yes,Castle on the Hill - by Ed Sheeran
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Data Science,,,53706,37.5665,126.978,pepperoni,neither,No,no preference,No,World to the wise. Matt Corman
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,20,Engineering: Mechanical,N/A,N/A,53715,41.8781,-87.6298,pepperoni,dog,Yes,no preference,Maybe,"STRINGS by MAX, featuring JVKE and Bazzi"
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53715,43.0389,-87.9065,sausage,dog,Yes,early bird,Maybe,paranoid- Rio da yung og
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,19,Engineering: Mechanical,,,53726,41.8614,-87.6114,basil/spinach,dog,Yes,no preference,No,Wildfire by Periphery
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics, Data Science,53711,35.7101,139.8107,mushroom,dog,Yes,early bird,Yes,Lemon Tree by the Fools Garden
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC002,21,Engineering: Biomedical,,,53703,38.5385,-75.0617,basil/spinach,cat,Yes,early bird,Maybe,"Be young, be foolish, be happy by The Tams."
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,19,Other (please provide details below).,"Still pretty undecided but I am between Computer Science, Data Science, and business. ",,68114,39.7392,-104.9903,pepperoni,dog,No,no preference,Maybe,All Star by Smash Mouth
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53703,35.5951,-82.5515,pepperoni,dog,Yes,night owl,Yes,Good Days - SZA
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,41.8781,-87.6298,pepperoni,cat,Yes,night owl,Yes,The Adults Are Talking - The Strokes
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53715,22.1565,-100.9855,pepperoni,dog,Yes,early bird,No,FE!N by Travis Scott
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53706,42.8886,88.0384,green pepper,dog,Yes,night owl,Yes,One of my favorite songs is '98 Braves by Morgan Wallen.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Science: Biology/Life,,,53711,1.2062,103.7959,green pepper,cat,No,early bird,No,Golden Hour by Mark Lee
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,17,Other (please provide details below).,Economics,,53706,51.5074,-0.1278,pepperoni,cat,Yes,night owl,Maybe,A Sky Full Of Stars- Coldplay
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Business: Finance,,Information Systems,53715,42.3601,-71.0589,none (just cheese),dog,Yes,no preference,Maybe,December 1963 (What a Night)
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Science: Biology/Life,,,53706,36.1699,-115.1398,mushroom,dog,No,night owl,Yes,Drive By by Train.
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,44.9105,-93.3487,sausage,dog,No,early bird,No,"Center Point Road by Thomas Rhett, Kelsea Ballerini"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,37.778,-122.42,pepperoni,dog,No,night owl,No,Work Song by Hozier
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,19,Engineering: Other,Materials Science and Engineering,,53703,51.5074,-0.1278,mushroom,cat,No,early bird,Yes,Good Old-Fashioned Lover Boy - Queen
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Science: Other,Microbiology,,53705,41.8781,-87.6298,pepperoni,cat,No,early bird,No,"So Right, Shaun"
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,,Computer Science,,Mathematics,53703,38.707,-9.1356,none (just cheese),dog,No,no preference,Maybe,"Taylor Swift ""Paper Rings"""
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,40.7948,-73.9628,none (just cheese),dog,No,night owl,Yes,sk8er boi - arvil lavinge
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Data Science,Data Science ,Information Science,53706,44.37,-89.81,pepperoni,neither,No,night owl,Yes,How You Like That- Blackpink
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,19,Computer Science,,,53715,43.0731,-89.4012,Other,cat,No,night owl,Yes,Feel Good Inc. by Gorillaz
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC003,20,Data Science,Data Science ,,53711,29.6548,91.1405,pepperoni,dog,No,night owl,Yes,608 by Salt
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Science: Other,Global Health,,53703,41.8781,87.6298,none (just cheese),dog,Yes,early bird,Maybe,Slide by Calvin Harris ft. Frank Ocean & Migos
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,20,Other (please provide details below).,Information Science ,I have two minors; Data Science and Digital Studies ,53703,-87.6298,41.8781,green pepper,cat,No,early bird,Maybe,August by Taylor Swift 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Data Science,,,53703,39.9042,116.4074,none (just cheese),dog,No,early bird,No,If by Bread
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Languages,,,53703,39.74,-105,macaroni/pasta,cat,No,night owl,Yes,Water by Mother Falcon
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Mechanical,,,53715,144,-37,pepperoni,dog,No,no preference,Yes,[Excitable - Def Leppard] (https://www.youtube.com/watch?v=jqVfxWgfWhw)
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,41.3851,2.1734,sausage,dog,No,early bird,Yes,"Memories, by David Guetta."
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Engineering: Biomedical,,,53736,41.8781,-87.6298,pineapple,dog,No,night owl,Maybe,softly by clairo 
+"COMP SCI 220:LEC003, COMP SCI 220:LAB335",LEC003,,Engineering: Mechanical,,,53715,59.9139,10.7522,mushroom,cat,Yes,early bird,No,"Perfect places
+
+Artist: Lorde"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,19,Engineering: Mechanical,,,53715,47.0505,8.3053,sausage,dog,Yes,no preference,Yes,"Breathe Deeper, Tame Impala"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,Information Systems (Business),53703,33.4725,-81.9644,pepperoni,dog,No,night owl,Yes,"Last Train Home, John Mayer."
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,24,Other (please provide details below).,Economics with Mathematical Emphasis ,"Data Science,",53703,42.7165,12.1116,pepperoni,dog,Yes,night owl,Yes,Tiny Dancer by Elton John
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,43.7696,11.2558,pepperoni,dog,No,early bird,No,Pride-Kendrick Lamar
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Business: Other,,,53703,35.6895,139.6917,pineapple,dog,Yes,night owl,Maybe,"Song: Cupid
+
+Artist: FIFTY FIFTY"
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Engineering: Industrial,,,53703,41.8781,-87.6298,sausage,dog,No,early bird,No,passionfruit- drake
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53703,39.1031,-84.512,pepperoni,cat,No,early bird,Yes,Call Me Maybe - Carly Rae Jepsen
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Computer Science,,"Data Science
+Game Design certificate",53702,28.7041,77.1025,pepperoni,dog,No,night owl,Yes,Better Now by Post Malone
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Science: Chemistry,,Biochemistry,20016,38.9072,-77.0369,pepperoni,dog,Yes,night owl,Yes,I would rather not answer
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Science: Other,Nutritional Sciences,,53703,41.8781,-87.6298,green pepper,cat,No,early bird,Yes,Sweet Virginia by The Rolling Stones
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,19,Engineering: Biomedical,,,53715,25.7575,-80.2515,pepperoni,dog,No,night owl,Yes,Touch the Sky - Kanye West
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Information science,Human development and family studies ,53726,45.4059,-86.9087,pepperoni,dog,No,night owl,Yes,Radio Lana Del Ray 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,Mathematics,53706,43.0731,-89.4012,pepperoni,dog,No,night owl,No,"*******************
+Party Rock Anthem, 
+*******************
+
+******
+LMFAO 
+******"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Pursuing certificate in Data Science. ,53711,35.0116,135.768,mushroom,dog,Yes,night owl,Yes,Nightcall- Kavinsky
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,21,Business: Actuarial,,"Risk Management & Insurance, Finance",53703,37.4467,25.3289,none (just cheese),dog,No,early bird,Maybe,london boy by taylor swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Other (please provide details below).,Economics,Data Science Certificate,53711,40.7131,-74.0072,sausage,dog,Yes,no preference,No,https://www.youtube.com/watch?v=XjN8qEs_K7c&list=PLuVodMYS9xWblpzyNp9CwjERyndPTnCGV&index=6
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53706,44.9232,-93.4853,pepperoni,dog,No,night owl,Yes,Kodachrome- Paul Simon
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53703,24.4539,54.3773,green pepper,neither,No,night owl,Yes,Kiss The Sky
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,19,Engineering: Mechanical,n/a,n/a,53703,32.7157,-117.1611,pepperoni,dog,Yes,night owl,Maybe,Dancing With Myself by Billy Idol
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,17,Computer Science,,,53706,13.0827,80.2707,pepperoni,dog,No,night owl,No,Starships by Nicki Minaj
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,-,-,53715,44.1782,-88.4772,pepperoni,dog,Yes,night owl,Maybe,Just Wanna Rock - Lil Uzi Vert
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Other (please provide details below).,Economics,Marketing or Mathematics,53706,40,116,pineapple,dog,No,night owl,Maybe,Save Your Tears(Remix) --Ariana Grande& The Weekend
+"COMP SCI 220:LEC003, COMP SCI 220:LAB331",LEC003,21,Science: Biology/Life,,"It's not a secondary major, but I'm completing a certificate in Computer Science.",53562,55.9515,-3.1895,basil/spinach,dog,No,night owl,Yes,"Second Child, Restless Child by The Oh Hellos"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,,53597,47.2144,14.7788,Other,cat,No,no preference,Yes,Black Summer - Red Hot Chili Peppers 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Engineering: Industrial,,,53706,24.9905,-77.3897,none (just cheese),dog,No,night owl,Yes,"East Side of Sorrow
+
+Zach Bryan"
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Economics,,53703,42.3601,-71.0589,pepperoni,dog,Yes,night owl,Yes,Life i a Highway - Rascal Flatts
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,21,Data Science,Double majoring in Data Science and Consumer Behavior and Marketplace Studies,Consumer Behavior and Marketplace Studies,53703,35.1796,129.0756,sausage,cat,Yes,night owl,Yes,The Kid Laroi - Always do 
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Statistics,,,53706,37.5519,127.0246,pepperoni,dog,Yes,early bird,Yes,"I have few.
+
+Madvillain : Great Day
+
+Radiohead: Let down
+
+The Strokes: Hard to Explain"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Mechanical,,,53703,43.0731,-89.4012,basil/spinach,dog,No,night owl,Yes,Zach Bryan - I remember everything
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Engineering: Industrial,,,53726,40.7128,-74.006,pepperoni,dog,No,night owl,Yes,Bohemian Rhapsody by Queen
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,,Engineering: Mechanical,,,53706,43,87,pineapple,dog,Yes,no preference,Yes,Free Bird- Lynyrd Skynyrd
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,41.8781,-87.6298,basil/spinach,dog,Yes,early bird,Yes,"Blue World, Mac Miller "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,Civil Engineering,,53715,44.513,88.013,pepperoni,dog,Yes,night owl,Yes,I Remember You- Skid Row
+"COMP SCI 220:LAB334, COMP SCI 220:LEC003",LEC003,20,Other (please provide details below).,Consumer Behavior and Marketplace Studies,,53726,43.0389,-87.9065,pepperoni,cat,No,night owl,Yes,Supercut by Lorde
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Business: Finance,,,53703,51.5986,-0.0752,sausage,dog,Yes,early bird,Maybe,Today is a Good Day - Ice Cube
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,21.593,-158.1034,none (just cheese),dog,No,early bird,Yes,Doses & Mimosas by Cherub
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,Data science,53719,-27.4954,-64.8601,basil/spinach,cat,No,early bird,No,Andromeda by Weyes Blood
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Business: Finance,N/A,N/A,53703,41.87,-87.6657,pepperoni,dog,No,no preference,Maybe,The world is yours- Nas
+"COMP SCI 220:LAB331, COMP SCI 220:LEC003",LEC003,19,Engineering: Mechanical,,,53711,40.865,-73.4175,macaroni/pasta,dog,No,early bird,Maybe,Piano Man Billy Joel
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Science: Other,Psychology,,53706,22.5429,114.0596,none (just cheese),dog,Yes,no preference,Maybe,Ballad in G minor by Chopin
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Mathematics/AMEP,,,53715,,40.7128,pineapple,cat,No,early bird,Maybe,a little bit yours by jp saxe
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,,Other (please provide details below).,Political Science,,53715,40.7094,-73.8049,pepperoni,dog,No,early bird,No,Deal by Jerry Garcia.
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,"I am a Mechanical Engineer interested in automotive engineering; car design, formula 1 etc.",,53706,45.677,-111.0429,sausage,dog,Yes,night owl,Maybe,"Oklahoma City, Zach Bryan"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Other,,,53703,42.6507,18.0944,pineapple,dog,No,night owl,Maybe,Sick Love by The Red Hot Chili Peppers
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Biomedical,,,53706,12.9716,77.5946,basil/spinach,dog,No,night owl,Yes,Right Round -  Flo Rida
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Business: Information Systems,,,53715,43.0389,-87.9065,pepperoni,dog,No,night owl,Maybe,Juice World - Wasted
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Science: Other,Economics,,53703,-8.4095,115.1889,Other,dog,No,night owl,No,Sinônimos
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53703,27.5268,-82.7363,pineapple,dog,No,no preference,Yes,The Last Great American Dynasty by Taylor Swift
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53726,43,-88,pepperoni,dog,No,night owl,Yes,Wonderful World by Sam Cooke
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Other (please provide details below).,Psychology ,Data Science Certificate,53703,40.7831,-73.9713,none (just cheese),dog,Yes,early bird,Yes,Doo Wop - Ms. Lauryn Hill
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,n/a,n/a,53703,41.9,-87.63,pepperoni,dog,Yes,early bird,No,Crocs & Wock - Babytron
+"COMP SCI 220:LAB346, COMP SCI 220:LEC004",LEC004,19,Science: Biology/Life,,Psychology,53706,33.198,-96.615,sausage,cat,No,night owl,Maybe,Experience - Ludovico Einaudi
+"COMP SCI 220:LEC004, COMP SCI 220:LAB341",LEC004,20,Statistics,,data science,53706,43.0759,89.3991,mushroom,dog,No,no preference,No,"running up that hill
+
+Kate Bush"
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,63105,38.6418,-90.3342,pepperoni,dog,No,night owl,Yes,Ain't No Mountain High Enough by Marvin Gaye and Tammi Terrell.
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,20,Engineering: Mechanical,,,53703,46.0216,-90.135,sausage,dog,No,night owl,Maybe,"Kickstart my heart, Motley Crue"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,22,Science: Chemistry,,,53129,10.7765,106.701,mushroom,cat,No,night owl,No,girls like me don't cry (remix) - thuy ft. MIN
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,25,Other (please provide details below).,Social Work,,53713,46.8537,-91.1071,tater tots,cat,No,no preference,Maybe,Mona Lisa by Dominic Fike
+"COMP SCI 220:LEC003, COMP SCI 220:LAB332",LEC003,18,Data Science,,,53715,48.1934,-0.6643,pepperoni,dog,No,early bird,No,Renegade by Big Red Machine (ft. Taylor Swift)
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Global Health,,53715,13.2263,72.4973,mushroom,dog,Yes,no preference,Yes,Around me - Metro Boomin
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Computer Science,,,53726,41.813,-87.629,pepperoni,dog,No,night owl,Yes,Self Control by Frank Ocean
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Sociology!,,53703,43.0139,-83.5983,pepperoni,dog,Yes,night owl,Yes,Thneedville by John Powell and Cinco Paul
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Industrial,,,53715,43.1117,-88.5011,pepperoni,dog,No,night owl,Yes,Bucket List by Mitchell Tenpenny
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,,Science: Other,Genetics and genomics ,,53711,42.78,-89.3,pepperoni,dog,No,night owl,Yes,Sunroof- Nicky Youre
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,,Other (please provide details below).,ECONOMIC,,53703,43,-80,none (just cheese),cat,No,night owl,Maybe,WOLVES (Hauzer)
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Pharmacology & Toxicology,Neurobiology,53706,35.0116,135.768,mushroom,cat,Yes,night owl,Maybe,All In My Head by Whethan
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,,Engineering: Industrial,,,53715,21.3069,-157.8583,tater tots,neither,Yes,early bird,No,Brian's Movie: peach pit
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,Supply Chain Management,53703,44.978,-93.2707,sausage,dog,No,night owl,Yes,"Upside Down, Jack Johnson"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Computer Science,N/A,"Economics, Data Science",53706,33.749,84.388,pineapple,dog,No,no preference,Yes,Ctrl + Del by MegaGoneFree
+"COMP SCI 220:LEC004, COMP SCI 220:LAB343",LEC004,18,Engineering: Biomedical,,,53706,41.8781,-87.6298,sausage,dog,Yes,night owl,Maybe,Entropy by Daniel Caesar
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,,"electrical engineering
+
+ ",53706,23.9314,120.5641,sausage,neither,Yes,early bird,Yes,"There is a light that never goes out, the Smiths"
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Data Science,53715,45.4343,12.3388,pepperoni,cat,No,night owl,No,Teenagers by My Chemical Romance
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Engineering: Industrial,,,57303,38.8339,-104.8214,pepperoni,dog,No,night owl,Yes,Run-Around by Blue Traveler
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Computer Science,,"Statistics, Data Science Certificate, Mathematics Certificate",53715,41.8781,-87.6298,Other,dog,Yes,early bird,Maybe,"FE!N
+
+Travis Scott, Playboi Carti"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Engineering: Industrial,,,53706,47.6062,-122.3321,sausage,dog,No,no preference,Maybe,Sunday Bloody Sunday - U2
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,21,Science: Biology/Life,,,53715,46.7867,92.1005,basil/spinach,dog,Yes,night owl,No,"Santeria, Sublime"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,,Data Science,,Economics,53715,34.0522,-118.2437,sausage,neither,Yes,no preference,Maybe,My favorite one will be The tale of 2 Citiez by J Cole
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,21,Engineering: Other,,International Engineering,53703,40.4168,-3.7038,pepperoni,dog,No,night owl,No,"El Dorado - Zach Bryan
+
+Scenes from an Italian restaurant - Billy Joel
+
+Wouldve could’ve should’ve - Taylor swift"
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Engineering: Mechanical,,,53715,48.1351,11.582,sausage,dog,No,no preference,Maybe,In Your Atmosphere (live) - John Mayer 
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,42.3601,-71.0589,macaroni/pasta,cat,Yes,night owl,Yes,Colder weather- Zac brown band 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Data Science,no,Spanish,53706,45.4408,12.3155,pineapple,dog,No,early bird,No,August - Taylor Swift
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Other (please provide details below).,Communication Arts,Sports Communication Certificate,53703,44.2947,90.8515,pineapple,dog,No,night owl,No,Simulation Swarm - Big Thief
+"COMP SCI 220:LEC002, COMP SCI 220:LAB321",LEC002,18,Science: Physics,,Mathematics,53706,46.2044,6.1432,sausage,dog,Yes,early bird,Yes,The Color Violet - Tory Lanez
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,43.0731,-89.4012,none (just cheese),dog,Yes,no preference,Yes,Starboy - Weeknd
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,18,Engineering: Other,Chemical engineering,,53706,34.3416,108.9398,pepperoni,cat,No,night owl,Yes,You Belong With Me - Taylor Swift
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC001,18,Engineering: Mechanical,,,53706,43.0597,-88.0269,pineapple,dog,No,no preference,Yes,AA-Isaiah Rashad
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,pepperoni,dog,No,no preference,Maybe,"Margaritaville, Jimmy Buffett"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB326",LEC002,18,Other (please provide details below).,Atmospheric and Oceanic science ,Does ROTC count?,53706,47.8864,106.9057,mushroom,dog,Yes,early bird,Yes,"I have a lot lol
+
+Water no get enemy-Fela Kuti is probably my favorite 
+
+I also love 70s rock if you want to talk about bands from then, a little from the 80s "
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,20,Data Science,,Personal Finance,53703,51.5074,-0.1278,sausage,dog,No,night owl,Yes,White Iverson - Post Malone
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,,53726,43,-89,pineapple,dog,No,early bird,No,Pretty much anything by Led Zeppelin
+"COMP SCI 220:LAB345, COMP SCI 220:LEC004",LEC004,20,Business: Information Systems,N/A,N/A,53713,37.7749,-122.4194,sausage,dog,No,night owl,Yes,GEEKALEEK by OHGEESY
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Business: Finance,,,53703,40.788,-74.3921,sausage,dog,No,early bird,No,"i know you hate me, midwxst"
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Data Science,,Political science ,53715,40.7128,-74.006,basil/spinach,dog,Yes,early bird,No,Slide Away by Oasis
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Data Science,,,53706,41.9028,12.4964,pepperoni,dog,Yes,night owl,Yes,Headlines by Drake
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,,53706,43.7696,11.2558,macaroni/pasta,dog,No,no preference,Yes,I Remember Everything by Zach Bryan
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,computer science,53703,31,121,mushroom,dog,No,night owl,No,lemon tree 
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,19,Business: Finance,,,53703,43.4796,-110.7624,mushroom,dog,Yes,night owl,Yes,shout Pt. 1 and 2 - the isley brothers 
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,20,Mathematics/AMEP,,Data Science,53703,39.1031,-84.512,Other,dog,Yes,no preference,Maybe,
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,20,Computer Science,,Data Science,53703,41.8781,-87.6298,pepperoni,dog,No,night owl,Maybe,Cupid by Fifty Fifty
+COMP SCI 319:LEC002,LEC002,25,Business: Other,Business Analytics,None,53705,15.2993,74.124,tater tots,dog,No,early bird,No,Shake it off - By Taylor Swift
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,47.8112,13.055,macaroni/pasta,dog,Yes,night owl,Yes,Flashing Lights by Kanye West
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC003,22,Statistics,,,53703,37.535,126.99,mushroom,dog,Yes,no preference,Yes,Ghost of you by 5SOS
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,21,Business: Other,,,53703,50.0755,14.4378,Other,dog,Yes,night owl,Yes,Dark Horse. Katy Perry
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,20,Data Science,,,53703,40.6782,-73.9442,pepperoni,dog,Yes,night owl,No,Shiver - Coldplay 
+"COMP SCI 220:LEC002, COMP SCI 220:LAB323",LEC002,18,Engineering: Industrial,,,53706,41.9028,12.4964,basil/spinach,dog,No,night owl,Yes,Can't Tell Me Nothing by Kanye West
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,19,Other (please provide details below).,Economics,,53703,41.8781,-87.6298,pepperoni,cat,No,early bird,No,Too many nights- Metro Boomin 
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,19,Other (please provide details below).,Econ BS,Certificates in DS & Consulting,53703,41.8781,-87.6298,basil/spinach,dog,No,night owl,Maybe,Shiver-Coldplay
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,21,Engineering: Biomedical,,,53726,45.17,-93.87,pepperoni,dog,No,night owl,Yes,Eye of the Tiger by Survivor
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53715,-33.8688,151.2093,pepperoni,dog,No,night owl,Maybe,Read My Mind by the Killers
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Engineering: Biomedical,,Computer science or data science,53706,40.7128,-74.006,basil/spinach,dog,No,early bird,Yes,any taylor swift
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,20,Data Science,,,53703,37.5665,126.978,sausage,cat,Yes,night owl,Yes,
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,21,Other (please provide details below).,Economics,,53703,34.4208,-119.6982,pepperoni,dog,No,early bird,No,Chicken Fried-Zac Brown Band
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Science: Biology/Life,biochemistry,certificate of data science,53711,31.23,121.47,sausage,dog,No,night owl,No," 
+
+Taylor Swift
+
+Love Story"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,19,Data Science,,Econ,53715,42.3601,-71.0589,sausage,dog,No,night owl,No,Let it Happen Tame Impala
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,21,Other (please provide details below).,Economics,Certificate in Data Science,53703,47.6062,122.3321,pepperoni,dog,No,no preference,Yes,Elton John- Funeral for a Friend/Love Lies Bleeding
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,21,Data Science,,,53715,43.215,-87.9955,Other,dog,Yes,night owl,Yes,
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Information Systems,,"Risk Management and Insurance, Legal Studies",53715,41.8781,-87.6298,mushroom,cat,No,night owl,Yes,"All too Well, Taylor Swift"
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,20,Mathematics/AMEP,I'm a double-major in Math and Computer Science. ,I'm a double-major in Math and Computer Science. ,53706,43.073,-89.401,pepperoni,dog,Yes,no preference,Yes,Listen to the Music: The Doobie Brothers
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,19,Engineering: Mechanical,,,53707,43.0779,-89.3902,pepperoni,dog,No,early bird,No,"Revival, Zach bryan "
+"COMP SCI 220:LAB336, COMP SCI 220:LEC003",LEC003,19,Data Science,,Economics Major/ Data Science Minor,53703,41.2959,73.7933,none (just cheese),dog,Yes,night owl,Maybe,Sky Full of Stars- Coldplay
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Business: Information Systems,,Business: Finance,53715,39.7392,-104.9903,sausage,cat,No,night owl,Yes,Lose My Mind - Jai Wolf
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,20,Business: Finance,,Econ,53715,21.1619,-86.8515,pepperoni,cat,No,night owl,Maybe,Just the two of us - Washington Jr.
+"COMP SCI 220:LAB323, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,45.1865,-87.1239,pepperoni,dog,No,no preference,No,Hey Driver- Zach Bryan
+"COMP SCI 220:LAB322, COMP SCI 220:LEC002",LEC002,18,Computer Science,,,53706,36.2048,138.2529,pineapple,dog,Yes,night owl,Maybe,Pretender by OFFICIAL HIGE DANDISM
+"COMP SCI 220:LEC003, COMP SCI 220:LAB334",LEC003,20,Business: Information Systems,,,53598,43.0731,-89.4012,pepperoni,dog,Yes,night owl,Yes,Holiday - Green Day
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,22,Engineering: Other,NA,NA,53703,41.8781,-87.6298,mushroom,cat,Yes,night owl,Maybe,Dancing Queen by ABBA
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53715,43.7696,11.2558,pepperoni,dog,No,early bird,Maybe,Last Nite-Strokes
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,18,Engineering: Industrial,,,53706,35.6895,139.6917,pepperoni,neither,Yes,early bird,Maybe,"It will Rain - Bruno Mars
+
+Blank Space - Taylor Swift
+
+Right There - Ariana Grande 
+
+Stuck with U - Ariana Grande & Justin Bieber "
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Business: Finance,,,53706,37.9753,23.7361,none (just cheese),dog,No,night owl,Maybe,"Homecoming, Kanye West"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,Economics with certificate in data science ,,53715,45.4408,12.3155,Other,dog,No,early bird,No,Chris Stapleton White Horse
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,19,Engineering: Mechanical,,,53703,42.4173,27.6964,sausage,cat,No,no preference,Yes,S91 by Karol G
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,19,Engineering: Industrial,,,53703,38.288,-85.67,none (just cheese),dog,Yes,night owl,Yes,"Waiting on the world to change, John Mayer"
+"COMP SCI 220:LAB335, COMP SCI 220:LEC003",LEC003,19,Business: Information Systems,-,Considering another business major as well as a language certificate,53706,44.3289,-88.5391,pepperoni,dog,No,night owl,Maybe,Surf - Mac Miller
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,18,Engineering: Mechanical,,,53706,43.4782,-110.7627,sausage,dog,Yes,no preference,Yes,Something in the Orange - Zach Bryan
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,17,Data Science,,,53706,55.9533,3.1883,sausage,dog,Yes,early bird,Yes,Build Me Up Buttercup by The Foundations
+"COMP SCI 220:LAB326, COMP SCI 220:LEC002",LEC002,18,Data Science,,,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"For my hand, Burna Boy feat. Ed Sheeran "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Other (please provide details below).,Economics,,53703,40.4406,-79.9959,sausage,dog,Yes,early bird,Maybe,Take Me Home Country Roads - John Denver
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,22,Science: Biology/Life,,"Data Science, Global Health ",53726,44.9765,-93.2652,pepperoni,dog,Yes,night owl,No,Where The Streets Have No Name - U2
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Other (please provide details below).,I intend to pursue a double major with Neurobiology and Data Science.,-,53706,25.1972,55.2744,mushroom,cat,No,no preference,Yes,Crazy by Aerosmith
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Business: Actuarial,,Data science,53706,40.7128,-74.006,basil/spinach,cat,No,early bird,No,Timeless by Taylor Swift
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,N/a,Certificate in Data Science,53715,43.0739,-89.3852,pineapple,dog,No,night owl,Yes,Hold on We're Going Home by Drake
+"COMP SCI 220:LEC002, COMP SCI 220:LAB322",LEC002,19,Engineering: Industrial,,,53703,41.3894,2.1588,macaroni/pasta,dog,Yes,no preference,No,"Brazil- Declan Mckenna
+
+British Bombs- Declan McKenna"
+COMP SCI 319:LEC001,LEC001,26,Science: Other,,,53560,55.8931,-3.0666,pepperoni,dog,No,night owl,No,I'm Gonna Be (500 Miles) by the Proclaimers
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,19,Other (please provide details below).,GIS/Cartography,"Political Science, Data Science",35715,-88.99,45.1686,pepperoni,dog,Yes,early bird,Yes,With Arms Wide Open - Creed
+"COMP SCI 220:LEC002, COMP SCI 220:LAB324",LEC002,18,Other (please provide details below).,"My primary major is Economics.
+
+ ",and my second major is Data Science.,53715,17.385,78.4867,mushroom,dog,No,no preference,Yes,"Say you won't let go- James Arthur
+
+GASOLINA- Daddy Yankee"
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Mathematics/AMEP,,,53705,1.3521,103.8198,Other,cat,No,no preference,Yes,"Held Up in New York City - Mia Lailani, Devan Ibiza"
+"COMP SCI 220:LEC004, COMP SCI 220:LAB342",LEC004,18,Business: Actuarial,,Risk management,53706,39.1333,117.1833,mushroom,cat,No,night owl,Yes,"One of my favorite songs is ""Maroon .45"" by ME3CH."
+"COMP SCI 220:LEC002, COMP SCI 220:LAB325",LEC002,18,Other (please provide details below).,economics,statistics,53706,39.9042,116.4074,mushroom,neither,Yes,night owl,Yes,
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,22,Science: Biology/Life,,,53703,50.0755,14.4378,sausage,dog,Yes,early bird,No,Hundred by Khalid 
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53706,37.5665,126.978,sausage,dog,No,early bird,Maybe,Don't look back in anger- Oasis
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Data Science,,Economics,53703,87.6298,41.8781,sausage,dog,No,early bird,Yes,"Franklins Tower, Dead and Company 7/14/2018"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,43.0731,-89.4012,pineapple,dog,Yes,night owl,Maybe,PRIDE. by Kendrick Lamar
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Data Science,,,53711,44.5133,-88.0158,sausage,dog,Yes,early bird,No,When the Levee Breaks - Led Zeppelin
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,43.771,11.2486,pepperoni,dog,Yes,early bird,Yes,Paranoid - Black Sabbath
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,18,Other (please provide details below).,Business: Information Systems & Data Science Double Major,N/A,53706,44.5133,-88.0133,sausage,dog,No,early bird,Maybe,Another is Waiting - The Avett Brothers
+"COMP SCI 220:LEC004, COMP SCI 220:LAB345",LEC004,20,Business: Finance,,,53703,41.8781,87.6298,pepperoni,dog,No,night owl,Maybe,rich spirit by Kendrick Lamar
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,,Computer Science,,,53705,55.6761,12.5683,pepperoni,dog,No,night owl,Yes,Drunk in the morning - Lukas Graham
+"COMP SCI 220:LEC003, COMP SCI 220:LAB336",LEC003,20,Computer Science,,,53703,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Someday - The Strokes
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Science: Biology/Life,,,53706,32.22,-80.75,pepperoni,dog,Yes,no preference,Maybe,Homegrown by Zac Brown Band
+"COMP SCI 220:LAB341, COMP SCI 220:LEC004",LEC004,19,Engineering: Mechanical,,,53703,41.8781,87.6298,Other,dog,Yes,early bird,Yes,Constellations - Jack Johnson
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,34.0549,118.2426,sausage,dog,Yes,night owl,Yes,"Come On Eileen 
+
+By Dexys Midnight Runners "
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,40.7128,74.006,pepperoni,cat,Yes,early bird,Yes,Free Bird - Lynyrd Skynyrd
+"COMP SCI 220:LEC004, COMP SCI 220:LAB346",LEC004,19,Engineering: Mechanical,,,53703,40.416,-3.703,pepperoni,dog,Yes,no preference,Maybe,"come as you are, nirvana"
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,41.8781,-87.6298,sausage,dog,No,night owl,Yes,Clarity by Zedd 
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Other (please provide details below).,Economics Major ,Data Science Certificate or Minor,53706,22.3964,114.1095,sausage,dog,Yes,night owl,Maybe,The Less I know The Better - Tame Impala
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53715,44.9778,-93.265,pineapple,dog,Yes,early bird,No,Superposition Daniel Caesar
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Science: Chemistry,,,53706,41.3851,2.1734,basil/spinach,dog,Yes,early bird,No,Don't Stop Believing by Journey 
+"COMP SCI 220:LAB324, COMP SCI 220:LEC002",LEC002,18,Engineering: Industrial,,,53706,59.9115,10.7579,pepperoni,dog,Yes,no preference,Maybe,Apologize - OneRepublic
+COMP SCI 319:LEC001,LEC001,23,Science: Other,,,53726,43.0389,-87.9065,sausage,dog,No,early bird,Yes,Homesick - Noah Kahan
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,46.7867,92.1005,pineapple,cat,Yes,early bird,Yes,Birdhouse In Your Soul (They Might Be Giants)
+"COMP SCI 220:LAB321, COMP SCI 220:LEC002",LEC002,19,Engineering: Mechanical,,,53703,44,-94,pineapple,dog,Yes,early bird,Maybe,Rick Astley- Never Gonna Give You Up
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Data Science,,,53705,65.6466,-21.643,macaroni/pasta,cat,Yes,no preference,No,Choose Life by Poorstacy
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Computer Science,,,53706,40.7128,-74.006,pineapple,cat,No,early bird,No,Love Story- Taylor Swift
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Mathematics/AMEP,,,53703,,,pepperoni,neither,No,night owl,Yes,"雪distance - Capper
+
+ "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,17,Data Science,,,53706,51.7692,19.4018,basil/spinach,cat,Yes,night owl,Maybe,Eventually by Tame Impala
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,17,Data Science,,,53706,48.857,2.352,none (just cheese),dog,Yes,night owl,No,Clean by Taylor Swift
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,My primary major is economics and I will major in Business (Actuarial Science or Accounting).,"As a secondary major, I have an interest in Data Science.",53703,36,127.7,Other,dog,Yes,night owl,Yes,"Vancouver - BIG Naughty
+
+ "
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53703,37.9598,-104.8202,mushroom,dog,Yes,night owl,Maybe,Hotel California by the Eagles
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,40.628,14.485,sausage,dog,No,night owl,Yes,No More by Jazzmeia Horn
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,18,Data Science,,,53706,43.4203,-88.1865,none (just cheese),dog,No,early bird,Yes,Style - Taylor Swift
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Computer Science,,,53703,40.7128,-74.006,mushroom,cat,Yes,night owl,Maybe,"Welcome to New York, Taylor Swift"
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53706,25.2048,55.2708,pineapple,cat,No,night owl,Yes,90210 - Travis Scott
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Science: Biology/Life,,,53706,39.6636,105.8792,basil/spinach,dog,Yes,early bird,No,We'll All Be Here Forever by Noah Kahan
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,18,Engineering: Mechanical,,,53706,44.5937,-93.4329,pepperoni,dog,No,no preference,Yes,One Beer - MF DOOM
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,"I'm a Dairy Science major, but am pursuing a Data Science certificate.",,53726,42.36,71.1,sausage,dog,No,night owl,Yes,Secrets by One Republic
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,19,Business: Finance,,Information systems  ,53706,3.139,101.6869,none (just cheese),cat,No,no preference,Yes,"Knocking on Heavens Door, Guns n roses"
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,"48,135,124",11.582,pepperoni,dog,No,early bird,Maybe,This Town's Been Too Good To Us by Dylan Scott
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Engineering: Other,,,53706,44.9608,-89.6302,none (just cheese),dog,Yes,night owl,No,Need a Favor - Jelly Roll
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,21,Engineering: Biomedical,,,53703,32.7765,-79.9311,pepperoni,cat,No,no preference,No,Revival - Zach Bryan
+"COMP SCI 220:LAB325, COMP SCI 220:LEC002",LEC002,18,Engineering: Mechanical,,,53706,38.9072,-77.0369,sausage,dog,No,night owl,Yes,White Lies- Max Frost
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Other (please provide details below).,Education Studies,,53703,30.5728,104.0668,mushroom,cat,No,no preference,Maybe,Hindenburg lover-Anson Seabra
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,21,Statistics,,,53715,30,20,pineapple,cat,No,night owl,Yes,hello from adele
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,44.3009,-90.9505,none (just cheese),cat,Yes,early bird,No,"All along the watchtower, Jimi Hendrix"
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC005,18,Engineering: Industrial,,,53706,30.3539,97.7702,sausage,cat,Yes,early bird,Maybe,Pink + White by Frank Ocean
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,40.4855,-106.8336,pineapple,neither,No,night owl,Maybe,"Viva La Vida - Coldplay
+
+ 
+
+ "
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Data Science,,"Economics, English",53706,60.3913,5.3221,sausage,dog,Yes,no preference,Yes,Before the Sun - Greg alan isakov
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,40.7128,-74.006,basil/spinach,cat,No,early bird,Yes,"Moonlight on The River, Mac Demarco"
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Engineering: Biological Systems ,,53703,43.0731,-89.4012,pineapple,dog,Yes,early bird,No,Fast Car by Luke Combs
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,18,Data Science,,,53706,25.7617,-80.1918,pepperoni,dog,Yes,night owl,Yes,Favorite Song Toosii
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,32,Other (please provide details below).,Consumer Behavior and Marketplace Studies,"Digital Studies, Business Cert for non-business majors",53719,23.1136,-82.3666,Other,dog,No,no preference,Yes,Arctic Monkey’s - Do I wanna Know ( Dua Lipa Cover) 
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC003,,Engineering: Industrial,,,53703,36.058,103.79,pineapple,cat,No,night owl,No,<<Love Story>>; Taylor Swift; 
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,21,Other (please provide details below).,Economics,Spanish,53703,37.3891,-5.9845,basil/spinach,cat,Yes,early bird,No,Everybody wants to rule the world by Tears for fears
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53715,38.6973,-9.4218,pepperoni,dog,No,night owl,Yes,Go Your Own Way - Fleetwood Mac
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,n/a,n/a,53706,42.1491,-84.0202,sausage,dog,Yes,night owl,Yes,TNT by AC DC
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Biomedical,,,53703,35.6895,35.6895,mushroom,dog,No,night owl,Yes,Threat to Joy- Strokes
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,17,Data Science,,I am double majoring in data science and economics.,53706,41.7851,-88.2471,basil/spinach,dog,No,night owl,Yes,Back to December by Taylor Swift
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Science: Biology/Life,,,53706,44.98,93.27,sausage,cat,Yes,night owl,Yes,Fade Into You - Mazzy Star
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,18,Data Science,,,53590,47.9972,7.8538,pepperoni,dog,No,early bird,Maybe,Bohemian Rhapsody - Queen
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,20,Engineering: Biomedical,,,53706,41.9,12.5,Other,neither,Yes,night owl,Maybe,Getaway car
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,19,Engineering: Mechanical,,,53706,45.61,-94.21,basil/spinach,dog,Yes,no preference,No,Everybody Wants to Rule the World - Tears For Fears
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,,Engineering: Mechanical,,,53703,40.4168,3.7038,pepperoni,cat,No,early bird,No,One of then is Find Your Flame by SEGA
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Data Science,,,53706,35.6895,139.6917,pepperoni,dog,Yes,night owl,Yes,Hotel California - Eagles
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Data Science,,Spanish,53706,46.7828,-92.1055,none (just cheese),dog,Yes,early bird,Yes,Stacy's Mom
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Data Science,,,53703,40.7128,-74.006,mushroom,dog,Yes,early bird,No,All my love - Noah Kahan
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Engineering: Industrial,,,53706,32.8262,-117.2642,pineapple,dog,No,night owl,Maybe,"Down Low, Dombresky"
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Undecided ,,53706,64.1472,-21.9424,pepperoni,dog,Yes,no preference,Maybe,i by Kendrick Lamar
+"COMP SCI 220:LEC001, COMP SCI 220:LAB313",LEC001,20,Other (please provide details below).,Economics w data science certificate,,53703,40.7306,-73.9352,pepperoni,dog,Yes,night owl,Yes,Schizo - Travis Scott & Young Thug
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Business: Other,Management & Human Resources,Data Science,53706,10.8231,106.6297,mushroom,dog,No,night owl,Maybe,Flowers - Miley Cyrus
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53534,43.0739,-89.3852,sausage,dog,No,no preference,Yes,All I wanna do-Jay Park
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,41.8781,-87.6298,Other,dog,Yes,no preference,Yes,surf - mac miller
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Mechanical,,,53715,23.7142,-166.205,pepperoni,dog,No,night owl,Maybe,Somthing in the Orange (Zack Bryan)
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,19,Engineering: Mechanical,,N/A,53706,40.5509,14.2429,pepperoni,cat,No,early bird,Yes,"Any Taylor Swift Song, one including Fearless"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB311",LEC001,20,Engineering: Mechanical,,,53562,19.0533,-104.3161,macaroni/pasta,dog,No,early bird,Yes,Escape (The Pina Colada Song) - Rupert Holmes
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pineapple,cat,Yes,night owl,Yes,Anything by Taylor Swift (must be Taylor's Version if the album is available) 
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Industrial,,Data Science ,55424,21.1743,-86.8466,pineapple,dog,Yes,no preference,Maybe,Some nights - fun.
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Other (please provide details below).,I am a sociology major.,A few minors but no other majors at this point. ,53726,43,-88,green pepper,dog,Yes,night owl,Yes,Natural Mystic - Bob Marley
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,20,Engineering: Industrial,,,53705,34.6819,112.4681,green pepper,neither,No,night owl,Yes,"Komm, süßer Tod (come on sweet death)"
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Data Science,,,53706,-22.9068,43.1729,Other,dog,Yes,night owl,Yes,Red Red Wine by UB40
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,21,Engineering: Mechanical,,,53711,44.9932,-93.5635,sausage,dog,Yes,night owl,Yes,Chan Chan; Bueno Vista Social Club 
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Other (please provide details below).,economics,political science,53715,41.9,12.5,basil/spinach,cat,No,early bird,No,sundress Asap Rocky
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,19,Computer Science,,Mathematics,53703,"415,204.80","873,954",pineapple,cat,No,night owl,Maybe,"Blinding Lights, The Weeknd "
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,,Science: Biology/Life,,,53706,23.0033,120.2588,none (just cheese),dog,No,no preference,Yes,It's a Kind of Magic - Queen
+"COMP SCI 220:LEC005, COMP SCI 220:LAB351",LEC005,20,Data Science,,,53706,34.4208,-119.6982,pineapple,dog,No,early bird,Yes,Cigarette Daydreams by Cage the Elephant
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,18,Engineering: Mechanical,,,53706,41.8781,-87.6298,pepperoni,dog,No,night owl,Yes,Can't Tell Me Nothing - Kanye West 
+"COMP SCI 220:LAB352, COMP SCI 220:LEC005",LEC005,18,Other (please provide details below).,Political Science,data science,53706,39.2783,-74.5755,sausage,dog,No,night owl,Yes,Goodmorning by bleachers
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC001,19,Other (please provide details below).,A double major in Data Science and Economics,,53706,39.0742,21.8243,sausage,dog,No,no preference,Yes,New Romantics - Taylor Swift
+"COMP SCI 220:LEC005, COMP SCI 220:LAB352",LEC005,19,Engineering: Mechanical,,,53715,39.9527,-75.164,sausage,dog,Yes,early bird,Yes,Golden Hour- jVke
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,18,Data Science,,I am also planning to major in Business Management.,53706,35.6528,139.8395,pepperoni,dog,No,night owl,Maybe,"I do not really have a specific favorite song, but my all-time favorite genres are rocks with bands like Queens, The White Stripes, Linkin Park,...But mostly I listen to unlyrical songs like phonk and lofi depending on the mood. "
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,21,Science: Physics,,,53726,43.0731,-89.4012,green pepper,cat,No,night owl,No,Gymnopedie No. 1 - Eric Satie
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,,53715,39.6003,-105.9831,sausage,dog,No,night owl,Yes,Istanbul (Not Constantinople)
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,19,Engineering: Industrial,,,53715,19.7193,-156.0013,pepperoni,dog,No,night owl,Yes,Cuccurucucù by Franco Battiato
+"COMP SCI 220:LEC001, COMP SCI 220:LAB315",LEC001,18,Other (please provide details below).,Economics,Possibly mathematics,53706,42.3601,-71.0589,macaroni/pasta,dog,No,night owl,Yes,Castle on the Hill by Ed Sheeran
+"COMP SCI 220:LAB351, COMP SCI 220:LEC005",LEC005,19,Other (please provide details below).,Information Science ,Political Science,53715,41.8781,-87.6298,pepperoni,cat,Yes,early bird,No,Both - Tiesto & BIA 
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Other (please provide details below).,Communication,,53715,45.0557,-92.8101,basil/spinach,dog,No,no preference,Maybe,"Meet me in the morning, Bob Dylan"
+"COMP SCI 220:LAB315, COMP SCI 220:LEC001",LEC001,18,Computer Science,,,53706,35.6067,-220.2139,pepperoni,cat,No,night owl,Yes,24k magic- Bruno Mars
+"COMP SCI 220:LAB311, COMP SCI 220:LEC001",LEC001,19,Statistics,,,53703,-36.8485,174.7633,pepperoni,cat,No,night owl,Yes,Eastside Banny Blanco
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,19,Business: Actuarial,,,53703,-33.8688,151.2093,pepperoni,dog,Yes,night owl,Yes,I Remember Everything by Zach Bryan
+"COMP SCI 220:LAB332, COMP SCI 220:LEC003",LEC005,18,Data Science,,,53703,40.7128,74.006,none (just cheese),dog,No,night owl,Yes,Revival by Zach Bryan
+COMP SCI 319:LEC002,LEC002,30,Science: Other,Geoscience,,53703,-63.9755,-57.9712,basil/spinach,dog,Yes,early bird,Yes,Un Dia - Juana Molina
+"COMP SCI 220:LEC001, COMP SCI 220:LAB312",LEC001,18,Engineering: Mechanical,na,na,53704,,,sausage,cat,No,early bird,Maybe,
+"COMP SCI 220:LEC001, COMP SCI 220:LAB316",LEC001,18,Engineering: Mechanical,,,53706,43.0731,-89.4012,pepperoni,cat,No,night owl,Yes,No Plan By Hozier
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,23,Computer Science,,,53705,30.2741,120.1551,macaroni/pasta,neither,Yes,no preference,No,soaring-TomLeevis
+"COMP SCI 220:LAB316, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53726,18.15,-65.8,sausage,dog,Yes,night owl,Maybe,Its all coming back to me now by Celine Dion
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Science: Biology/Life,,,53715,39.9042,116.4074,sausage,cat,No,night owl,Maybe,"[米津玄師 - アンビリーバーズ , Kenshi Yonezu - Unbelivers] (https://www.youtube.com/watch?v=naJcqMBbAn4)"
+"COMP SCI 220:LEC001, COMP SCI 220:LAB314",LEC001,20,Statistics,,mathematics ,53706,35.86,104.2,sausage,cat,No,no preference,Maybe,Lemon Tree by Fools Garden
+"COMP SCI 220:LAB313, COMP SCI 220:LEC001",LEC001,19,Engineering: Mechanical,,Mathematics,53706,41.8781,-87.6298,pepperoni,cat,No,no preference,Yes,Kon Queso by MF DOOM
+COMP SCI 319:LEC001,LEC001,22,Computer Science,,,53703,45.576,13.8475,pepperoni,dog,No,early bird,No,i dont know
+"COMP SCI 220:LAB312, COMP SCI 220:LEC001",LEC001,19,Engineering: Biomedical,,,53706,35.6895,139.6917,pepperoni,dog,Yes,early bird,Yes,Levels - Sidhu Moosewala
+"COMP SCI 220:LAB314, COMP SCI 220:LEC001",LEC001,20,Engineering: Mechanical,,,53703,29.6548,91.1405,green pepper,cat,Yes,early bird,No,Perfect by Ed Sheeran 
+"COMP SCI 220:LAB342, COMP SCI 220:LEC004",LEC004,20,Other (please provide details below).,Economics,,53715,64.1472,-21.9424,Other,cat,No,no preference,Maybe,
diff --git a/f23/Cole_Lecture_Notes/12_Iteration_Practice/project.py b/f23/Cole_Lecture_Notes/12_Iteration_Practice/project.py
new file mode 100644
index 0000000000000000000000000000000000000000..047eec02674c0693486aea981d141ac78db9ea0e
--- /dev/null
+++ b/f23/Cole_Lecture_Notes/12_Iteration_Practice/project.py
@@ -0,0 +1,74 @@
+__student__ = []
+
+
+def __init__():
+    import csv
+    """This function will read in the csv_file and store it in a list of dictionaries"""
+    __student__.clear()
+    with open('cs220_survey_data.csv', mode='r', encoding='utf-8') as csv_file:
+        csv_reader = csv.DictReader(csv_file)
+        for row in csv_reader:
+            __student__.append(row)
+
+def count():
+    """This function will return the number of records in the dataset"""
+    return len(__student__)
+
+
+def get_lecture(idx):
+    """get_lecture(idx) returns the lecture of the student in row idx"""
+    return __student__[int(idx)]['Lecture']
+
+
+def get_section(idx):
+    """get_lecture(idx) returns the section of the student in row idx"""
+    return __student__[int(idx)]['section']
+
+
+def get_age(idx):
+    """get_age(idx) returns the age of the student in row idx"""
+    return __student__[int(idx)]['Age']
+
+
+def get_primary_major(idx):
+    """get_primary_major(idx) returns the primary major of the student in row idx"""
+    return __student__[int(idx)]['Primary major']
+
+
+def get_other_majors(idx):
+    """get_other_majors(idx) returns the secondary major of the student in row idx"""
+    return __student__[int(idx)]['Other majors']
+
+
+def get_zip_code(idx):
+    """get_zip_code(idx) returns the residential zip code of the student in row idx"""
+    return __student__[int(idx)]['Zip Code']
+
+
+def get_pizza_topping(idx):
+    """get_pizza_topping(idx) returns the preferred pizza toppings of the student in row idx"""
+    return __student__[int(idx)]['Pizza topping']
+
+def get_cats_or_dogs(idx):
+    """get_cats_or_dogs(idx) returns whether student in row idx likes cats or dogs"""
+    return __student__[int(idx)]['Cats or dogs']
+
+def get_runner(idx):
+    """get_runner(idx) returns whether student in row idx is a runner"""
+    return __student__[int(idx)]['Runner']
+
+def get_sleep_habit(idx):
+    """get_sleep_habit(idx) returns the sleep habit of the student in row idx"""
+    return __student__[int(idx)]['Sleep habit']
+
+def get_procrastinator(idx):
+    """get_procrastinator(idx) returns whether student in row idx is a procrastinator"""
+    return __student__[int(idx)]['Procrastinator']
+
+
+def get_song(idx):
+    """get_procrastinator(idx) returns the student in row idx favorite song"""
+    return __student__[int(idx)]['Song']
+
+
+__init__()