PayCharm编辑器运行python文件时报错
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
windows---系统读取文件路径可以使用\
python---字符串中\有转义的含义
1.在路径前加r 即保持原始值
os.remove(r'C:\Users\Administrator\Desktop\www.txt')
2.使用\\双斜杠
os.remove('C:\\Users\\Administrator\\Desktop\\www.txt')
3.使用/正斜杠
os.remove('C:/Users/Administrator/Desktop/www.txt')