Note:In the next lecture among other things you're also going to learn how to load Excel (.xlsx)files in Python with pandas. Pandas may require the xlrd library as a dependency. If you get an error such asModuleNotFoundError: No module named 'xlrd'
you can fix that byinstalling xlrd:
pip install xlrd
or
pip3 install xlrd