Created
January 13, 2017 16:49
-
-
Save MechMK1/435902d073a8c5934d0eb4ca5631c0eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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