Skip to content

Instantly share code, notes, and snippets.

@osadalakmal
Created December 7, 2012 00:07
Show Gist options
  • Save osadalakmal/4229582 to your computer and use it in GitHub Desktop.
Save osadalakmal/4229582 to your computer and use it in GitHub Desktop.
Python code for reading a simple csv file
with open(sys.argv[1],'rU') as orderFile:
for line in orderFile:
print line.strip().split(',')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment