ItSolutionStuff.com

How to Open and Read Xlsx File in Python?

By Hardik Savani • October 30, 2023
Python

Hello Guys,

In this tutorial, we will go over the demonstration of how to open and read xlsx file in python. you can see how to open xlsx file in python. This article goes in detailed on how to open xlsx file in python using xlrd. you will learn python read xlsx file line by line.

There are several modules and ways to read xlsx files in python. i will give you simple two examples using pandas and openpyxl to read and get xlsx file data. so let's see both examples one by one.

You can use these examples with python3 (Python 3) version.

I simply created data.xlsx file with content as like below, we will use same file for both example:

demo.xlsx

Example 1: using pandas

main.py

# import pandas library as pd
import pandas as pd
   
# get by default 1st sheet of demo excel file
data = pd.read_excel('demo.xlsx')
   
print(data)

Output:

   ID             Name              Email
0   1    Hardik Savani   hardik@gmail.com
1   2  Vimal Kashiyani    vimal@gmail.com
2   3   Harshad Pathak  harshad@gmail.com

Example 2: using openpyxl

main.py

import openpyxl
  
# Define variable to load the dataframe
dataframe = openpyxl.load_workbook("demo.xlsx")
   
# Define variable to read sheet
data = dataframe.active
   
# Display Row Data
for row in range(0, data.max_row):
    for col in data.iter_cols(1, data.max_column):
        print(col[row].value)

Output:

ID
Name
Email
1
Hardik Savani
hardik@gmail.com
2
Vimal Kashiyani
vimal@gmail.com
3
Harshad Pathak
harshad@gmail.com

I hope it can help you...

Tags: Python
Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

Python Read and Write a JSON File Example

Read Now →

Python Create JSON File from List Example

Read Now →

How to Get Column Names from CSV File in Python?

Read Now →

How to Read a CSV File in Python?

Read Now →

How to Write CSV File in Python?

Read Now →

Python Read Text File into List Example

Read Now →

How to Read Text File Line by Line in Python?

Read Now →

How to Read a Text File in Python?

Read Now →

Python List Print All Elements Except First Example

Read Now →

Python Get First Date of Next Month Example

Read Now →

Python Create Zip Archive from Directory Example

Read Now →

Python List All Dates Between Two Dates Example

Read Now →