79729358

Date: 2025-08-08 05:36:50
Score: 1.5
Natty:
Report link

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.

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Ammar Yazdani