Reading excel sheet in python:
To avoid XLRD error while opening excel sheets using pandas, follow these steps:
1. Install xlrd package and upgrade it using:
!pip install xlrd --upgrade
2. Then, in your notebook write:
import pandas as pd
data = pd.read_excel('filename.xlsx')
data
Comments
0 comments
Article is closed for comments.