def read_data_from_excel(excel_file,sheet_name):
return_value=[]
#判断文件是否存在
if not os.path.exists(excel_file):
raise ValueError("File not exists")
#打开指定的sheet
wb=load_workbook(excel_file)
for s in wb.sheetnames:
if s==sheet_name:
sheet = wb[sheet_name]
for row in sheet.rows:
return_value.append([col.value for col in row])
print(return_value)
return return_value[1:]
相关文章
- 10-16[CrackMe]一个关于读取文件并进行运算判断的CrackMe
- 10-16python中csv文件的读取问题
- 10-16VFS - 虚拟文件系统基本操作方法的封装
- 10-16python之xml 文件的读取方法
- 10-16flink on yarn 用户代码获取keytab本地文件和principal的方法
- 10-16"xxxx".zip:这个压缩文件格式未知或者数据已经被损坏,打不开压缩文件,总出现这个提示的解决方法
- 10-16python使用xlrd模块读写Excel文件的方法
- 10-16c – 在GCC 4.1.1中优化文件中各个函数的方法是什么?
- 10-16Mac OS 文件、文件夹重命名的方法
- 10-16C文件操作2:如何随机的进行文件读取?