私は関数write_corpus_to_fileを呼び出そうとしていますが、プログラムを実行するとエラーコード'属性エラー:リストに属性 'txt'がありません。私はPythonの初心者です、誰も助けることができますか?Pythonエラーコード: 'リストには属性' txt 'がありません
FUNCTION:MAIN LOOP OF
def write_corpus_to_file(mycorpus, myfile):
f = open(myfile, 'w')
newcorpus = ''.join(mycorpus)
f.write(newcorpus)
f.close()
SECTION:
elif user_input=="a":
addseq = input("Enter new input to corpus ")
tidy_text(addseq)
extcorpus = corpus.extend(addseq)
write_corpus_to_file(extcorpus, corpus.txt)
。だから 'corpus.txt'は本当に' 'corpus.txt" ' – sjaustirni