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 がアクセスできるように、コンピューターのどのフォルダーの場所にテキスト ファイルを保存しますか? コマンド fin = open('words.txt') で word.txt というファイルを開こうとしています。
ファイルへのフル パスを使用する必要があります。
with open('/path/to/words.txt', 'r') as handle: print handle.read()
それ以外の場合は、現在のディレクトリが使用されます。
import os # Print your current directory print os.path.abspath(os.curdir)