Код: Выделить всё
import pandas as pd
import numpy as np
import os
df=pd.read_csv('data.csv', header=0)
with pd.ExcelWriter('Mergeddata.xlsx', engine="openpyxl", mode='a', if_sheet_exists='overlay') as writer:
df.to_excel(writer, sheet_name='Sheet1',startcol=3,startrow=1,index=False)
90,77 90,7 90,8 81 69,3 90 0,72 0,71 0,72 64,46 90 64,54 63,64 65 5808,68 90 0,98
Подробнее здесь: https://stackoverflow.com/questions/796 ... xcelwriter