Hello I'm trying to access an excel file within python. I'm using this code we learned in class:
with open("file_name") as csv_file:
csv_reader =csv.DictReader(csv_file)
and each time I run it I get the same error
PermissionError: [Errno 13] Permission denied: 'file_name'
is there any code that I could run that would allow the command shell to read the file?