I use the following code to move data from one Excel file to another.
import pandas as pd
inventory = pd.read_excel('Original_File.xlsx', skiprows=3)
inventory.to_excel('New_File.xlsx')
How do I NOT write the content in column 1 to the new Excel file? Column 1 contains a blank column header then a row number for each line of data in the dataframe.