0
openpyxlを使用して列から重複したエントリを削除し、別のブックに一意のエントリを書き込もうとしています。Openpyxl:列から重複するセルを削除する
入力ファイル:
Cust1 Cust1 Cust1 Cust2 Cust2 Cust3
予想される出力は次のとおりです。私は"IndexError: list index out of range" for line "new_row1[k].append(row_name)"
を取得しています
Cust1 Cust2 Cust3
wb1 = openpyxl.load_workbook('OldFile.xlsx')
ws = wb1.active
wb2 = openpyxl.Workbook()
ws2 = wb2.active
k=1
new_row1 = []
for i in range(2, ws.max_row + 1):
new_row1.append([]) #list for storing the unique entries
row_name = ws.cell(row=i,column=1).value #taking the 1st cell's value
new_row1[k].append(row_name) #Appending the list
ws2.append(new_row1) #writing to new workbook
k+=1
for j in range(3, ws.max_row + 1):
row_name2 = ws.cell(row=j, column=1).value #taking 2nd cell's value
if row_name == row_name2: #comparing both the values
i+=1
j+=1
wb2.save('NewFile.xlsx')
、また別に説明したエラーから取得するように変更する必要があるものがあります必要な出力。
'k = 1'ではなく' k = 0'が必要です。 Pythonのリストはインデックス0から始まります。 'set()'関数を使用して、Pythonで一意なデータのリストを作成します。あなたの質問はExcelの質問ではなく、100%のPythonの質問です。 – Elmex80s
openpyxlのドキュメントに慣れてください。これは不必要に複雑なコードです。作業しやすい塊に分解してください。 –