# -*- coding:utf-8 -*-
from selenium import webdriver
import xlrd
#读取文件路径
file_path=r'E:\练习读取Excel用.xlsx'
#获取文件数据
data=xlrd.open_workbook(file_path)
#获取sheet
sheet_data=data.sheet_by_name('Sheet1')
#获取所有行
#full_row=sheet_data.nrows
#获取所有列
#full_col=sheet_data.ncols
#读取第一行数据
rows1=sheet_data.row_values(0)
#读取第一列数据
cols1=sheet_data.col_values(0)
#读取第二行第三列的值
number1=sheet_data.cell_value(1,2)
#打印数据
print(rows1)
print(cols1)
print(number1)