欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

python读取Excel实例详解

程序员文章站 2022-05-30 20:36:23
本文实例为大家分享了python读取excel实例的具体代码,供大家参考,具体内容如下 1.操作步骤: (1)安装python官方excel库-->xlrd (...

本文实例为大家分享了python读取excel实例的具体代码,供大家参考,具体内容如下

1.操作步骤:

(1)安装python官方excel库-->xlrd

(2)获取excel文件位置并读取

(3)读取sheet

(4)读取指定rows和cols内容

2.示例代码:

# -*- coding: utf-8 -*-
 
import xlrd 
from datetime import date,datetime
 
def read_excel():
 
#文件位置
excelfile=xlrd.open_workbook(r'c:\users\administrator\desktop\testdata.xlsx') 
#获取目标excel文件sheet名 
print excelfile.sheet_names()
 
#------------------------------------ 
#若有多个sheet,则需要指定读取目标sheet例如读取sheet2 
#sheet2_name=excelfile.sheet_names()[1] 
#------------------------------------ 
#获取sheet内容【1.根据sheet索引2.根据sheet名称】
#sheet=excelfile.sheet_by_index(1)
sheet=excelfile.sheet_by_name('testcase002')
#打印sheet的名称,行数,列数
print sheet.name,sheet.nrows,sheet.ncols 
#获取整行或者整列的值
rows=sheet.row_values(2)#第三行内容
cols=sheet.col_values(1)#第二列内容
print cols,rows 
#获取单元格内容
print sheet.cell(1,0).value.encode('utf-8') 
print sheet.cell_value(1,0).encode('utf-8') 
print sheet.row(1)[0].value.encode('utf-8') 
#打印单元格内容格式
 
print sheet.cell(1,0).ctype
 
if__name__ =='__main__':
 
read_excel()

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。