FileNotFoundError Traceback (most recent call last)
in
----> 1 with open(‘Ricardo Sobalvarro Internship reflection Week 7.docs’) as hmwk:
2 file_hmwk = hmwk.read()
3 print(file_hmwk)
FileNotFoundError: [Errno 2] No such file or directory: ‘Ricardo Sobalvarro Internship reflection Week 7.docs’
This is my code:
with open(‘Ricardo Sobalvarro Internship reflection Week 7.docs’) as hmwk:
file_hmwk = hmwk.read()
print(file_hmwk)
PLEASE HELP! Why does my computer not the read the document when it is saved on my computer?