Reading Data from CSV and Excel using Pandas

Data Science with Python 6 min min read Updated: Mar 07, 2026 Beginner
Reading Data from CSV and Excel using Pandas
Beginner Topic 4 of 10

Reading CSV Files

python import pandas as pd df = pd.read_csv("data.csv") print(df.head())

Reading Excel Files

python df = pd.read_excel("data.xlsx")

Next Tutorial: Selecting Data in Pandas

Get Newsletter

Subscibe to our newsletter and we will notify you about the newest updates on Edugators