2

我有一个看起来像这样的 excel 文件:

   1984    1      1
   1985    1      1

我想将第 2 列中的所有值更改为 0,但我不确定如何遍历行。

我努力了:

import openpyxl

wb=openpyxl.load_workbook(r'C:\file.xlsx')
ws=wb['Sheet1']
for row in ws:
     row = [x.replace('1', '0') for x in row]

但这一定不是您遍历行的方式。

我想要的输出是:

1984 0 1
1985 0 1
4

1 回答 1

6

You can do something like this:

import openpyxl
excelFile = openpyxl.load_workbook('file.xlsx')
sheet1 = excelFile.get_sheet_by_name('Sheet1')
currentRow = 1
for eachRow in sheet1.iter_rows():
    sheet1.cell(row=currentRow, column=2).value = "0"
    currentRow += 1
excelFile.save('file.xlsx')

Updates 2nd column to all zeros.

于 2016-10-21T15:11:08.503 回答