No such file or directory: 'C'
In your error, Python thinks your file path is just "C".
This usually happens when the path you pass to open() is incomplete, incorrectly formatted, or broken up into pieces before open() gets it.
The "..." you’ve put in your code ,is not valid Windows paths can’t have "..." as a directory placeholder.
You must use the full exact path to the file.