モジュールからの出力をCSVファイルに保存しようとしていますが、モジュールの一部である次のコードを実行するとエラーが発生しました。
base_keys = ['path', 'rDATE', 'cDate', 'cik', 'risk', 'word_count']
outFile = open('c:\\Users\\ahn_133\\Desktop\\Python Project\\MinkAhn_completed2.csv','wb')
dWriter = csv.DictWriter(outFile, fieldnames=base_keys)
dWriter.writerow(headerDict)
これがエラーメッセージです(base_keysは見出しです)。
return self.writer.writerow(self._dict_to_list(rowdict))
TypeError: 'str' does not support the buffer interface
エラーメッセージが何であるかさえわかりません。私はPython3.3とWindows7を使用しています。
御時間ありがとうございます。