I use this code to get the path of the excel file:
xlsx_path = input("excel path:")
print(repr(xlsx_path))
The user will give me "C:\Users\Lenovo\test.xlsx" or C:\Users\Lenovo\test.xlsx. But if user give me a "C:\Users\Lenovo\test.xlsx"(Note the user will give me a redundant quotation mark), the xlsx_path will be '"C:\\Users\\Lenovo\\test.xlsx"' actually. Then I cannot recognize the path. How to get a uniform path regardless of user give me any path?
 
    