openpyxl读取excel文件的方法


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:]

上一篇:前端导出Excel文件


下一篇:mPEG2000-Silane,mPEG2000-硅烷