import csv
with open('D:\thesis data\Experiment\COCO dataset\coco_person_dataset\annotations_download_person.csv', 'r') as f:
reader = csv.reader(f)
for row in reader:
...
FileNotFoundError: [Errno 2] No such file or directory: 'D:\thesis data\Experiment\COCO dataset\coco_person_dataset\x07nnotations_download_person.csv'
How can I remove this error? I have copied the exact path but it is still showing this error.