Read data from an Excel file with a password in Python

Source: Internet
Author: User
Using Python to read the data in the Excel file with the password, the program code is as follows: #filename: readingxls.py "This program is used to read data in an Excel file with a password in Python. First install the XLRD third-party library via pip PIP3 installation xlrd Enter the Excel file path: D:\x1.xls ' import xlrdpath=input ("Please enter Excel file path:") workbook= Xlrd.open_workbook (Path) B=len (Workbook.sheets ()) I=0for I in range (b): Sheet=workbook.sheet_by_index (i) for row in RA Nge (sheet.nrows): print () for Col in Range (Sheet.ncols): Print ("%7s"%sheet.row (Row) [Col].value, ' \ T ', end= ') print ()

Read data from an Excel file with a password in Python

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.