import xlrd #导入 xlrd的包
#1.打开excel文件
data=xlrd.open_workbook('xie.xlsx')
#2.读取excel表格
table=data.sheets()[0]
#3.读取表格中行数
rows=table.nrows
#4.读取第一行的数据,table.row_values(x) ,x表示索引值
rowvalue=table.row_values(1)
print('---------------------')
#打印姓名和性别
print('姓名'+'\t'+'\t'+'性别')
#使用for循环打印姓名对应的性别信息
for i in range(1,rows):
print(table.row_values(i)[0]+' '+'\t'+table.row_values(i)[1])