用python读取带密码的excel文件中的数据

Posted 枫桥宇

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用python读取带密码的excel文件中的数据相关的知识,希望对你有一定的参考价值。

用python读取带密码的excel文件中的数据,程序代码如下:
 
#filename:readingxls.py
‘‘‘
此程序的作用为:用python读取带密码的excel文件中的数据。
首先通过pip安装xlrd第三方库 pip3 install xlrd
请输入excel文件路径:D:x1.xls
‘‘‘
import xlrd
path=input("请输入excel文件路径:")
workbook=xlrd.open_workbook(path)
b=len(workbook.sheets())
i=0
for i in range(b):
    sheet=workbook.sheet_by_index(i)
    for row in range(sheet.nrows):
        print()
        for col in range(sheet.ncols):
            print("%7s"%sheet.row(row)[col].value,‘ ‘,end=‘‘)
print()

以上是关于用python读取带密码的excel文件中的数据的主要内容,如果未能解决你的问题,请参考以下文章

python win32com 读取带密码的excel

Python 如何把json数据写入excel

如何用java程序读取带密码(密码已知)的office文档。

xlrd实现从excel文件读取数据

Python 如何读取excel中的字典数据

怎样用python,读取excel中的一列数据