Skip to content

Instantly share code, notes, and snippets.

@hanksudo
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hanksudo/4946d136081d8f9c34c7 to your computer and use it in GitHub Desktop.
Save hanksudo/4946d136081d8f9c34c7 to your computer and use it in GitHub Desktop.
read CSV demo in Python 2.7
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import csv
with open('sample_data.csv') as f:
for row in csv.reader(f):
print row
1 Apple
2 HTC
3 Samsung
4 Sony
5 Microsoft
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment