python在描述路径时有两种方式: 'd:\a.txt',转义的方式 r'd:\a.txt',声明字符串不需要转义 (使用raw string,也就是在string'前面加 r,告诉python不需要转义)