Bootstrap

python怎么读取excel中的某个单元格-python读取excel(xlrd)

一、安装xlrd模块:

1、mac下打开终端输入命令:

pip install xlrd

2、验证安装是否成功:

在mac终端输入 python 进入python环境

然后输入 import xlrd

不报错说明模块安装成功

二、常用方法:

1、导入模块:

import xlrd

2、打开文件:

x1 = xlrd.open_workbook("data.xlsx")

3、获取sheet:

获取所有sheet名字:x1.sheet_names()

获取sheet数量:x1.nsheets

获取所有sheet对象:x1.sheets()

通过sheet名查找:x1.sheet_by_name("test”)

通过索引查找:x1.sheet_by_index(3)

copycode.gif

# -*- coding:utf-8 -*-

import xlrd

import os

filename = "demo.xlsx"

filePath = os.path.join(os.getcwd(), filename)

print filePath

# 1、打开文件

x1 = xlrd.open_workbook(filePath)

# 2、获取sheet对象

print 'sheet_names:', x1.sheet_names() # 获取所有sheet名字

print 'sheet_number:', x1.nsheets # 获取sheet数量

print 'sheet_object:', x1.sheets() # 获取所有sheet对象

print 'By_name:', x1.sheet_by_name("test") # 通过sheet名查找

print 'By_index:', x1.sheet_by_index(3) # 通过索引查找

copycode.gif

输出:

;