Read file
Tags: #excel #pandas #read #finance #snippet #dataframe
Description: This notebook reads an Excel file and allows users to manipulate the data within it.
import pandas as pd
excel_file_path = "Excel-Sales_Jan2020.xlsx"
df = pd.read_excel(excel_file_path)
df
Last modified 1mo ago