Skip to content

Latest commit

 

History

History
44 lines (25 loc) · 1.52 KB

Excel_Read_file.md

File metadata and controls

44 lines (25 loc) · 1.52 KB



Template request | Bug report | Generate Data Product

Tags: #excel #pandas #read #finance #snippet #dataframe

Author: Florent Ravenel

Description: This notebook reads an Excel file and allows users to manipulate the data within it.

Input

Import libraries

import pandas as pd

Variables

excel_file_path = "Excel-Sales_Jan2020.xlsx"

Model

Read excel

You want to add more parameters ?
👉 Check out the pandas documentation here.

df = pd.read_excel(excel_file_path)

Output

Display result

df