我试图在通用模式下打开一个csv文件,以便我可以在程序执行期间查看文件的内容,因为我的代码必须写入大约80000条记录。但在向csv写入行时,我得到的错误为“IOError:文件未打开以进行写入”。这是我的代码:
with open('Output.csv', "U") as f:
writer=csv.writer(f,delimiter=',', quotechar='"',quoting=csv.QUOTE_MINIMAL)
headingList=['SpID','Family','Genus','Species','Classification','Habit','isImageAvailabe']
mainclass.writeLine(writer,headingList)
def writeLine(rowWriter,list):
rowWriter.writeRow() # at this line i am getting the mentioned error.
我尝试以“wb”模式打开,然后它不允许我在执行期间查看内容。