Python Ошибка: AttributeError: объект 'NoneType' не имеет атрибута 'to_excel' - PullRequest
0 голосов
/ 07 мая 2020

Я пытаюсь объединить все файлы в каталоге и сохранить объединенный файл в другой каталог. Я использую Python 3.8. Когда я запускаю код, я получаю следующее с AttributeError:

c:\test\Upload test\Book1.xlsx
c:\test\Upload test\Book2.xlsx
c:\test\Upload test\Book3.xlsx
Traceback (most recent call last):
File "C:/Python/PythonDev/combine.py", line 104, in <module>
newdf.to_excel(writer,"All")
AttributeError: 'NoneType' object has no attribute 'to_excel'

код:

import pandas as pd
import globe
filelist = glob.glob(r'c:\test\Upload test\*.xlsx')
file1 = "*.*"
for i in  filelist:
    file2 = pd.read_excel(i)
    file2['FileName'] = i
    file1 = ['newdf']
    newdf = file1.append(file2)
    print (i)
writer = pd.ExcelWriter(r'c:\test\Uploaded\uploadfile.xlsx', engine= 'xlsxwriter')
newdf.to_excel(writer,"All")
writer.save()

1 Ответ

0 голосов
/ 07 мая 2020

Append ничего не возвращает ...

Попробуйте что-то вроде этого:

import pandas as pd
import glob

raw_files = glob.glob(r'c:\test\Upload test\*.xlsx')

pd_files = pd.DataFrame()

for file in raw_files:
    pd_files.append(pd.read_excel(file))

pd_files.to_excel("c:\test\Uploaded\uploadfile.xlsx")
...