python怎么读取xls文件
老样子:先上代码import xlrdexcel = xlrd.open_workbook("C:/Users/Administrator/Desktop/date.xls")# 打开excel文件sheet = excel.sheet_by_index(0)# 获取工作薄rows: list = sheet.row_values(0)# 获取第一行的表头内容index = rows.index(
·
老样子:先上代码
import xlrd
excel = xlrd.open_workbook("C:/Users/Administrator/Desktop/date.xls") # 打开excel文件
sheet = excel.sheet_by_index(0) # 获取工作薄
rows: list = sheet.row_values(0) # 获取第一行的表头内容
index = rows.index('username') # 获取age列所在的列数: 1,也可以换成"password"
listindes = sheet.col_values(index) # 获取age列的所有内容
# 遍历该列所有的内容
for i in range(1, len(listindes)):
print(listindes[i])
老样子:看效果

GitCode 天启AI是一款由 GitCode 团队打造的智能助手,基于先进的LLM(大语言模型)与多智能体 Agent 技术构建,致力于为用户提供高效、智能、多模态的创作与开发支持。它不仅支持自然语言对话,还具备处理文件、生成 PPT、撰写分析报告、开发 Web 应用等多项能力,真正做到“一句话,让 Al帮你完成复杂任务”。
更多推荐
所有评论(0)