Document

2023年5月15日

web自动化14--读取excel文件

摘要: 1、安装xlrd模块, pip install xlrd,成功后 2、 打开exlce表格 data = xlrd.open_workbook('test.xlsx') table = data.sheets()[0] # 通过索引顺序获取sheet table = data.sheet_by_in 阅读全文

posted @ 2023-05-15 15:10 小排顾 阅读(51) 评论(0) 推荐(0) 编辑

导航