python 之 xlrd模块 excel的读使用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 之 xlrd模块 excel的读使用相关的知识,希望对你有一定的参考价值。

import xlrd

data = xlrd.open_workbook("databases.xls").sheet_by_name(u"mall")

nrows = data.nrows
ncols = data.ncols


c = {}
def data_mall():
    for i in range(nrows):
        print(data.row_values(i))
        # a={i:data.row_values(i)}
        # c.update(a)
        # print(a)

print(data_mall())

  python简单的对excel读取使用,‘open_workbook("excel_name.xls").sheet_by_name(u"sheet_name")‘ sheet_name为工作簿的名字。

以上是关于python 之 xlrd模块 excel的读使用的主要内容,如果未能解决你的问题,请参考以下文章

python操作excel之xlrdxlwt模块详解

python之openpyxl模块

Python之读写Excel

python使用xlrd模块读取Excel

python 读 excel 模块: xlrd

python读写Excel文件--使用xlrd模块读取,xlwt模块写入