Skip to content
Snippets Groups Projects
Commit b0873d17 authored by Wade Fagen-Ulmschneider (waf)'s avatar Wade Fagen-Ulmschneider (waf)
Browse files

activity1

parent c65dc1bf
Branches activity1
No related tags found
No related merge requests found
#
# CS 205, Activity 1: Your Most Similar Classmate
# https://courses.engr.illinois.edu/cs199205/activity/1.php
#
# Requires csv library
import csv
# Reads CSV file into data
with open("res/cs205welcome_clean - Sheet1.csv") as f:
reader = csv.DictReader(f)
data = [row for row in reader]
# Work with each row of data, one at a time
for row in data:
# Print out the name of the person for the current row
person = row["Name"]
print( person )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment