you can save your pandas data frame and load it any time you want to work on it using. For example:
df1 = pd.DataFrame([['a', 'b'], ['c', 'd']],
index=['row 1', 'row 2'],
columns=['col 1', 'col 2'])
df1.to_excel("output.xlsx")
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…