Вы можете сделать это с помощью pandas
:
import pandas as pd
data = (
('Shankar', '100', '100', '200'),
('Kumar', '50', '80', '130'),
('Shiva', '20', '20', '40'),
('Sekar', '20', '20', '40')
)
# Create a dataframe with the data of interest
df = pd.DataFrame(data=list(data), columns=['Name', 'Col1', 'Col2', 'Col3'])
# Export the dataframe to a XLSX file, in Worksheet `sheet1`,
# without the index nor the column names of the dataframe
df.to_excel('data.xlsx', sheet_name='sheet1', index=False, header=False)
Это выводит следующее значение для data.xlsx :