Using Pandas to work with Excel
OpenPyXL is not the only tool you can use to read and write Excel spreadsheets. One popular package used by the scientific Python community that can read and write Excel spreadsheets is Pandas.
If you look in the Pandas documentation, you will discover that it uses the following Python packages for reading and writing Excel though:
xlrd - Reading Excel
xlw…


