read excel using 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
import pandas as pd
pd.read_excel('tmp.xlsx', index_col=0)
Example 3: pandas excel python
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')
Example 4: Pandas read excel
import pandas as pd
data = pd.read_excel (r'C:\Users\Ron\Desktop\Product List.xlsx')
df = pd.DataFrame(data, columns= ['Product'])
print (df)