python 讀取csv檔案

雲中不知人發表於2017-05-08
f = open('d:/vim/test/pwd.csv')
for line in f:
    print line.strip()
f.close()

相關文章