As can be seen in the following snippets, I have been trying to open a file in Python, the file actually exists, and I am using absolute (not relative) path in the code. Yet, as can be seen this stragne error message (no such file or directory) keeps poping up annoyingly.
Any ideas?
CodePudding user response:
Typo:
the file you are trying to open is E.srt but the path in the error message says E.str
CodePudding user response:
You typed E.str
when you meant E.srt
.