赞
踩
可以使用Python的xlrd库来读取Excel中的一列数据,具体代码如下:import xlrd# 打开excel文件 workbook = xlrd.open_workbook("example.xlsx")# 获取所有sheet sheet_name = workbook.sheet_names() print("sheet name:", sheet_name)# 根据sheet索引获取sheet对象 sheet = workbook.sheet_by_index(0)# 获取行数 rows = sheet.nrows# 获取某一列的数据 col_data = sheet.col_v
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。