gpt4 book ai didi

python - 检查电子表格的每个单元格与另一个电子表格的每个单元格的最佳方法?

转载 作者:行者123 更新时间:2023-12-01 05:38:09 24 4
gpt4 key购买 nike

我正在使用 python 包 xlrd 和 xlwt 来使用 python 读取和写入 Excel 电子表格。但我不知道如何编写代码来解决我的问题。

我的第一个电子表格中有一个列,其中的州名称采用 2 个字母缩写和全名的形式(有些全小写,有些首字母大写)。我正在尝试编写另一张纸,读取第一张纸上的名称,查看它们是否与第二张纸上的名称匹配,并将它们作为第二张纸上找到的州缩写写入第三张纸上。这有道理吗?

无论如何,如果不制作五十个单独的“for”循环,我不知道该怎么做。这是我到目前为止所得到的,但运行它写了一个空白的第一列。

import xlrd #reads
import xlwt #writes

input_book = xlrd.open_workbook("file_path_here")
input_sheet = input_book.sheet_by_index(0)
state_book = xlrd.open_workbook("file_path2_here")
state_sheet = state_book.sheet_by_index(0)
output_book = xlwt.Workbook()
output_sheet = output_book.add_sheet('test')

for row in range(input_sheet.nrows):
state = input_sheet.cell_value(row, colx=1) #state names are in col 1
Value1 =input_sheet.cell_value(row, colx=2) #data being left unchanged, just copied to output sheet
Value2 =input_sheet.cell_value(row, colx=3)
Value3 =input_sheet.cell_value(row, colx=4)
for name in range(state_sheet.nrows): #a sheet with state names in col 0, state abrevs in col 1
state_name = state_sheet.cell_value(name,colx=0)
state_abrev = state_sheet.cell_value(name, colx=1)
if state.lower() == state_name:
output_sheet.write(row,0,state_abrev)
output_sheet.write(row,1,Value1)
output_sheet.write(row,2,Value2)
output_sheet.write(row,3,Value3)

print ('done')
output_book.save('output.xls')

最佳答案

这听起来像一本字典 - 首先创建一个字典

state_abbrs = {}
for name in range(state_sheet.nrows): #a sheet with state names in col 0, state abrevs in col 1
state_name = state_sheet.cell_value(name, colx=0)
state_abrev = state_sheet.cell_value(name, colx=1)
state_abbrs[state_name.lower()] = state_abbr

然后使用它:

for row in range(input_sheet.nrows):
state = input_sheet.cell_value(row, colx=1) #state names are in col 1
Value1 = input_sheet.cell_value(row, colx=2) #data being left unchanged, just copied to output sheet
Value2 = input_sheet.cell_value(row, colx=3)
Value3 = input_sheet.cell_value(row, colx=4)

output_sheet.write(row, 0, state_abbrs.get(state.lower(), '')
output_sheet.write(row, 1, Value1)
output_sheet.write(row, 2, Value2)
output_sheet.write(row, 3, Value3)

关于python - 检查电子表格的每个单元格与另一个电子表格的每个单元格的最佳方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18361685/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com