ファイルを開くのに問題がありnames.txt
ます。正しいディレクトリにいることを確認しました。以下は私のコードです:
import os
print(os.getcwd())
def alpha_sort():
infile = open('names', 'r')
string = infile.read()
string = string.replace('"','')
name_list = string.split(',')
name_list.sort()
infile.close()
return 0
alpha_sort()
そして、私が得たエラー:
FileNotFoundError: [Errno 2] そのようなファイルまたはディレクトリはありません: 'names'
私が間違っていることについてのアイデアはありますか?