У меня есть кадр данных pandas с такими столбцами
![enter image description here](https://i.stack.imgur.com/d8zga.png)
Пример:
df = pd.DataFrame([np.arange(6)], columns=['2019 col1', '2019 col2', '2019 col3',
'2020 col1', '2020 col2', '2020 col3'])
print (df)
2019 col1 2019 col2 2019 col3 2020 col1 2020 col2 2020 col3
0 0 1 2 3 4 5
Я хочу сохранить кадр данныхна лист Excel со следующими столбцами -
![enter image description here](https://i.stack.imgur.com/tveMS.png)
Есть ли способ сделать что-то подобное?