我正在尝试获取从.txt文件读取的代码,该文件本身位于另一个名为Driving_dataset的文件中。这些文件存在,应该可以找到.txt文件,但找不到,我不能说自己在做什么错。.
我对所有拼写错误进行了三重检查
#read data.txt
with open("driving_dataset/data.txt") as f:
for line in f:
xs.append("driving_dataset/" + line.split()[0])
应将其通过Driving_dataset文件夹定向到data.txt文件,但不会将其提取。并给我错误
with open("driving_dataset/data.txt","r") as f:
FileNotFoundError: [Errno 2] No such file or directory: 'driving_dataset/data.txt'