Created
August 9, 2014 06:36
-
-
Save KentaYamada/8c5cc9056ea34ba532cc to your computer and use it in GitHub Desktop.
PythonでCSVファイル読み込み
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
#-*- coding:utf-8 -*- | |
import csv | |
def csvDownLoad(): | |
f = open("test.csv") | |
data = csv.reader(f) | |
for row in data: | |
print(row) | |
f.close() | |
if __name__ == "__main__": | |
csvDownLoad() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment