Skip to content

Instantly share code, notes, and snippets.

@pasali
Created May 8, 2011 14:01
Show Gist options
  • Save pasali/961393 to your computer and use it in GitHub Desktop.
Save pasali/961393 to your computer and use it in GitHub Desktop.
okur
#!/usr/bin/env python
#-*- coding : utf-8 -*-
def reader(dosya):
csv = open(dosya)
csv_list = []
for i in csv:
for j in i.split(","):
csv_list.append(j.strip())
return csv_list
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment