path = input("Enter the path")
book = xlrd.open_workbook(path)
After giving path and running program, I am getting the following error:
OSError: [Errno 22] Invalid argument: '"D:\\\shreyatest1.xlsx"'
Path is: "D:\\shreyatest1.xlsx"
path = input("Enter the path")
book = xlrd.open_workbook(path)
After giving path and running program, I am getting the following error:
OSError: [Errno 22] Invalid argument: '"D:\\\shreyatest1.xlsx"'
Path is: "D:\\shreyatest1.xlsx"