how to acces other sheets of excel file in python pandas code example
Example 1: import excel file in python pandas
import pandas as pd
df = pd.read_excel (r'Path where the Excel file is stored\File name.xlsx')
Example 2: 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)