简体   繁体   English

如何使用 xlrd 读取 excels 'Student Name' 列数据?

[英]How to read the excels 'Student Name' column data using xlrd?

How to read the excels 'Student Name' column data using xlrd ?如何使用xlrd阅读过人之处“学生姓名”一的数据?

Please find the below image for the reference :请找到以下图片以供参考:

在此处输入图片说明

import xlrd
book=xlrd.open_workbook('sample.xlsx')
print book.nsheets
print book.sheet_names()
sheet=book.sheet_by_index(1)
sheet.col_values(col_num) #This line reads the column data. I guess you know how to load the sheet and all.

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM