The next lecture has an exercise where you will need to load an Excel (.xlsx) file in Python with pandas. The pandas library may require the xlrd library as a dependency; if you get an error like ModuleNotFoundError: No module named 'xlrd', you can fix the error by installing xlrd:

pip install xlrd 

or

pip3 install xlrd