来自file1
我正在使用file2
致电os.popen("python file2.py")
,在file2
中,我正在将csv文件读入下面的数据框,代码为:
dataset = read_csv('dataset.csv',encoding='ISO-8859-1')
我再次将数据帧的内容写入csv文件。
在读取和写入文件时,我收到错误:BrokenPipeError: [Errno 32] Broken pipe
。
我该怎么做才能解决它?请建议。我在linux中使用python 3.6。 提前谢谢。