create excel file python pandas code example
Example 1: export a dataframe to excel pandas
df.to_excel(r'Path where you want to store the exported excel file\File Name.xlsx', index = False)
Example 2: how to create a excel file in python
import xlsxwriter
workbook = xlsxwriter.Workbook('Expenses01.xlsx')
worksheet = workbook.add_worksheet()
expenses = (
['Rent', 1000],
['Gas', 100],
['Food', 300],
['Gym', 50],
)
row = 0
col = 0
for item, cost in (expenses):
worksheet.write(row, col, item)
worksheet.write(row, col + 1, cost)
row += 1
worksheet.write(row, 0, 'Total')
worksheet.write(row, 1, '=SUM(B1:B4)')
workbook.close()
Example 3: read excel file using pandas in python
import sqlite3
import pandas as pd
from sqlalchemy import create_engine
file = "location of Excel file..."
engine = create_engine('sqlite://', echo=False)
df = pd.read_excel(file, sheet_name=sheetname)
df.to_sql("test", engine, if_exists="replace", index=False)
results = engine.execute("Select * from test")
final = pd.DataFrame(results, columns=df.columns)