Skip to content

Instantly share code, notes, and snippets.

@scriptkkiddie
Created January 23, 2023 10:04
Show Gist options
  • Save scriptkkiddie/39c5027a703944c4547614445f430f6f to your computer and use it in GitHub Desktop.
Save scriptkkiddie/39c5027a703944c4547614445f430f6f to your computer and use it in GitHub Desktop.
Reading XLSX/Excel in Python with Pandas
import pandas as pd

df = pd.read_excel(xlFilePath)

where xlFilePath is where file located either in absolute or relative path.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment