I used the following code to read data in file_1 then write that to a new file_2.
import pandas as pd
inventory = pd.read_excel('file_1.xlsx', skiprows=3)
inventory.to_excel('file_2.xlsx')
file_2 is a newly created file each time. How do I write the data to specific tab in an existing file without clearing out other tabs that contain data?