Read Excel file in Pandas December 3, 2019 import pandas as pd excel_file = 'movies.xls' movies = pd.read_excel(excel_file) movies_sheet1 = pd.read_excel(excel_file, sheetname=0, index_col=0) References https://www.dataquest.io/blog/excel-and-pandas/ Related