我在计算机上的哪个文件夹位置存储文本文件以供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)