I am new to python, am attempting to work with some existing code, but am getting errors due to a missing module. I am using python version 2.7, pandas version 0.18.1, all inside VSCode.
problem code is:
import pandas.io.formats.excel
Error:
Exception has occurred: ImportError No module named formats.excel
I have tried using pandas.formats.excel but then the 'excel' part is missing. i've also tried uninstalling and reinstalling pandas
Thanks for any help.