Pandas Excel: Import three datasheets from a given excel data into a single dataframe and export the result into new Excel file
Pandas: Excel Exercise-25 with Solution
Write a Pandas program to import three datasheets from a given excel data (employee.xlsx ) into a single dataframe and export the result into new Excel file. Go to Excel data
Note: Structure of the three datasheets are same.
Sample Solution:
Python Code :
import pandas as pd
import numpy as np
df1 = pd.read_excel('E:\employee.xlsx',sheet_name=0)
df2 = pd.read_excel('E:\employee.xlsx',sheet_name=1)
df3 = pd.read_excel('E:\employee.xlsx',sheet_name=2)
df = pd.concat([df1, df2, df3])
df.to_excel('e:\output.xlsx', index=False)
Excel Data:
employee.xlsx:
Sheet-1
Sheet-2
Sheet-3
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://198.211.115.131/python-exercises/pandas/excel/python-pandas-excel-exercise-25.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics