path = input("Enter the path")
book = xlrd.open_workbook(path)
在给出路径和运行程序后,我收到以下错误:
OSError:[Errno 22]参数无效:'" D:\\\ shreyatest1.xlsx"'
路径是:" D:\\ shreyatest1.xlsx"
答案 0 :(得分:1)
TextView textView = (TextView) findViewById(R.id.YOUR_TEXTVIEW_ID);
字符是python如何表示字符串文字中的转义\\
。从控制台输入字符串时,不需要(读:错误)来使用这种表示法。只需输入您看到的路径 - \
。