我正在尝试使用我的python脚本将几个xlsx文件中的特定行添加到列表中。我试图添加的行是第4列(E列)的单元格值减去第1列(B列)的单元格值的行不等于0.我的xlsx文件如下所示:
A B C D E F G H
1 A10 2 A10 2 AB
2 A105 1 A105 2 AB
因此,对于以下代码,我希望将第二行添加到打开的列表编号中,因为2-1的总和不是0.然后我想通过将它们添加到列列表中对它们进行排序,然后将它们放入进入新列表,主列表,其中所有内容都已排序。这是我的代码:
import logging
import pandas as pd
from openpyxl import Workbook, load_workbook
import glob
from openpyxl.utils.dataframe import dataframe_to_rows
numbers = []
rapp = r"C:\Myfolder"
files = glob.glob(rapp)
for file in files:
df = pd.read_excel(file)
numbers = df.iloc[:, 4], df.iloc[:,1][df.iloc[:, 4] - df.iloc[:,1] != 0].tolist()
excel_input = load_workbook(excelfile)
ws = excel_input.active
for r in dataframe_to_rows(df, index=True, header=True):
ws.append(r)
else:
pass
col1 = []
col2 = []
col4 = []
col5 = []
col7 = []
col8 = []
mainlist = []
try:
for row in numbers:
col1.append(ws.cell(row=row, column=1).value)
col2.append(ws.cell(row=row, column=2).value)
col4.append(ws.cell(row=row, column=4).value)
col5.append(ws.cell(row=row, column=5).value)
col7.append(ws.cell(row=row, column=7).value)
col8.append(ws.cell(row=row, column=8).value)
except AttributeError:
logging.error('Something is wrong')
finally:
for col1, col2, col4, col5, col7, col8 in zip: #Error
mainlist.append(col1, col2, col4, col5, col7, col8)
return mainlist
这是错误:
Traceback:
for col1, col2, col4, col5, col7, col8 in zip
TypeError: 'type' object is not iterable.
这给了我错误。 我知道这里有一些错误,我很抱歉,但这是我能解决我的任务的最好方法。我可以帮助我吗?我会非常感激的!我是python的新手。使用Python 3.4.1。
答案 0 :(得分:1)
您的问题是您使用zip
,这是您从未定义的变量。但是,由于zip()
是一个built-in function,它会返回zip-class
object,这会让人感到困惑。
第for col1, col2, col4, col5, col7, col8 in zip:
行试图找到一个名为zip
的迭代器,其中包含6个子组件。由于zip()
是内置的,因此Python将此行读作"遍历zip
类型"但类型不可迭代,因此您收到相应的错误。如果你选择了一些不是内置的东西,你会得到一个NameError
您的示例有点不清楚,但我相信您可以使用下面的finally
块(proof of concept)来修复它:
finally:
columns = zip(col1, col2, col4, col5, col7, col8)
for column in columns:
mainlist.append(column)