Skip to content

Instantly share code, notes, and snippets.

@MechMK1
Created January 13, 2017 16:49
Show Gist options
  • Save MechMK1/435902d073a8c5934d0eb4ca5631c0eb to your computer and use it in GitHub Desktop.
Save MechMK1/435902d073a8c5934d0eb4ca5631c0eb to your computer and use it in GitHub Desktop.
#!/usr/bin/python3
import csv
if __name__ == '__main__':
with open('file.csv', 'r') as f:
reader = csv.reader(f)
your_list = list(reader)
print(your_list)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment