create excel file pandas python code example

Example 1: export a dataframe to excel pandas

#Python, pandas
#To export a pandas dataframe into Excel

df.to_excel(r'Path where you want to store the exported excel file\File Name.xlsx', index = False)

Example 2: read excel file using pandas in python

import sqlite3
import pandas as pd
from sqlalchemy import create_engine

# Read Excel file or sheets using pandas

# Setup code :)

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)