file_object=open('C:\\Users\\zy\\Desktop\\train.txt')
file_object=open(r'C:\Users\zy\Desktop\train.txt')
windows中路径是反斜杆,与转义字符混淆,所以书写路径有两种方式防止转移。
file_object=open('C:\\Users\\zy\\Desktop\\train.txt')
file_object=open(r'C:\Users\zy\Desktop\train.txt')
windows中路径是反斜杆,与转义字符混淆,所以书写路径有两种方式防止转移。