import xlsx to pandas code example
Example 1: pandas read excel
import pandas as pd
pd.read_excel('tmp.xlsx’, sheet_name='Sheet1')
Example 2: pandas read excel certain columns
df = pd.read_excel(file_location,sheet_name='Sheet1', usecols="A,C,F")
Example 3: import all xlsx file columns names in python jupyter
import pandas as pd
movies = pd.read_excel('movies.xls')
movies.head(n=5)
movies.tail(n=5)
movies_sheet1 = pd.read_excel(excel_file, sheetname=0)
movies_sheet2 = pd.read_excel(excel_file, sheetname=1)
movies_sheet2 = pd.read_excel(excel_file, sheetname='name of third sheet')
sorted_by_gross = movies.sort_values(['Gross Earnings'], ascending=False)
movies.to_excel('output.xlsx')