Skip to content

Instantly share code, notes, and snippets.

@tlylt
Created May 19, 2020 13:08
Show Gist options
  • Save tlylt/919e9b10f1bf351677076f0c891529d8 to your computer and use it in GitHub Desktop.
Save tlylt/919e9b10f1bf351677076f0c891529d8 to your computer and use it in GitHub Desktop.
def read_csv(filename): # provided
with open(filename, 'r') as f:
lines = csv.reader(f, delimiter=',')
return tuple(lines)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment