I want to add an empty row to all of my excel files using python pandas.
I leave you an example so you can understand.
I have this: Excel example
And I want to add this row before name and city: Example
I need to do that, but not opening the excels files cause this is just a small example of what I really need.
Thanks!


df1 = pd.DataFrame(np.insert(df1.values, index+1, values=[" "] * len(df1.columns), axis=0),columns = df1.columns)