一直在谷歌上搜索这个问题很长一段时间,但似乎找不到解决方案。我使用 excelfiles 函数在指定目录中创建所有 excelfiles 的列表,包括名称中的“tst”。之后,我想使用 locate_vals 函数从每个文档中读取某些单元格,但我似乎无法从文件列表中读取文件。也许有一个我看不到的非常简单的解决方案?我得到的错误信息在底部。
这是我昨天寻求帮助的一项更大任务的一部分(“在目录中搜索特定的 Excel 文件并将这些文件中的数据与输入值进行比较”),但由于我似乎找不到这个问题的任何答案我想最好给它一个自己的线程。如果我错了,请纠正我,我会删除它:)
import xlrd
import os, fnmatch
#globals
start_dir = 'C:/eclipse/TST-folder'
def excelfiles(pattern):
file_list = []
for root, dirs, files in os.walk(start_dir):
for filename in files:
if fnmatch.fnmatch(filename.lower(), pattern):
if filename.endswith(".xls") or filename.endswith(".xlsx") or filename.endswith(".xlsm"):
file_list.append(os.path.join(root, filename))
return file_list
file_list = excelfiles('*tst*') # only accept docs hwom title includes tst
for i in file_list: print i
'''Location of each val from the excel spreadsheet'''
def locate_vals():
val_list = []
for file in file_list:
wb = xlrd.open_workbook(os.path.join(start_dir, file))
sheet = wb.sheet_by_index(0)
for vals in file:
weightvalue = file_list.sheet.cell(3, 3).value
lenghtvalue = sheet.cell(3, 2).value
speedval = sheet.cell(3, 4).value
错误信息:
Traceback (most recent call last):
File "C:\Users\Håvard\Documents\Skulearbeid\UMB\4. Semester Vår\Inf120 Programmering og databehandling\Workspace\STT\tst_mainsheet.py", line 52, in <module>
print locate_vals()
File "C:\Users\Håvard\Documents\Skulearbeid\UMB\4. Semester Vår\Inf120 Programmering og databehandling\Workspace\STT\tst_mainsheet.py", line 48, in locate_vals
weightvalue = file_list.sheet.cell(3, 3).value
AttributeError: 'list' object has no attribute 'sheet'