-2
我打開文件夾,然後試圖標記CSV文件中的每個單詞。這段代碼是否正確?我試圖讀取文件,然後標記,但我看不到結果。我是編程新手,有人可以幫我嗎?如何在Python中標記我的CSV文件?
filename=open("positivecsv.csv","r")
type(raw) #str
tokens = []
for line in filename.readlines():
tokens+=nltk.word_tokenize(line)
>>> print tokens
Python已經有一個CSV API,所以你不必擔心標記文件。請參閱Python手冊的[第13.1節](https://docs.python.org/2/library/csv.html)。 – Wernsey