Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のPythonの本とPythonドキュメントでは、このコードはファイルを開くのに十分なはずです。
f = open("file.txt", "r")
しかし、これを行うと、file.txtが存在しないことを示すエラーメッセージが表示されます。ただし、file.txtが配置されているパス全体を使用すると、次のように開きます。
f = open("C:/Users/Me/Python/file.txt", "r")
これについての説明はありますか?