gpt4 book ai didi

python - 如何从python中的excel表中读取数据?

转载 作者:太空宇宙 更新时间:2023-11-04 02:29:54 27 4
gpt4 key购买 nike

selenium python框架中是否有python脚本可以从excel表中读取数据?

我写了下面的代码,但我认为它不完全正确

def getcell(行,列):

table=list()
record=list()

for x in range(rows):
for y in range(cols):
record.append(SheetName.cell(x,y).value)
table.append(record)
record=[]
rows=rows+1

return table;

打印(表格)

最佳答案

尝试 xrld .用于读取 ms excel 表的 python 模块。这是其自述文件中提供的一个简单示例

import xlrd
book = xlrd.open_workbook("myfile.xls")
print "The number of worksheets is", book.nsheets
print "Worksheet name(s):", book.sheet_names()
sh = book.sheet_by_index(0)
print sh.name, sh.nrows, sh.ncols
print "Cell D30 is", sh.cell_value(rowx=29, colx=3)
for rx in range(sh.nrows):
print sh.row(rx)

关于python - 如何从python中的excel表中读取数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49473107/

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