https://www.youtube.com/watch?v=xY2_4mX3YSE&t=858s
上に動画の方を参考にして、英単語テストを作ろうとしています。
ウィンドウズを使用しています。
以下を実行すると
f.write('問い{}. {}\n\n'.format(question_num + 1, question_word))
ValueError: I/O operation on closed file
というエラーになってしまうのですが解決策はありますでしょうか?
python
1コード 2import re 3import random 4 5source = 'englishword.txt' 6 7with open(source ,encoding="utf-8") as f: 8 data = f.read() 9 10english_words = re.findall('[a-z]+', data) 11ja = re.findall('\s.*\n', data) 12 13meanings = [] 14for word in ja: 15 m = re.sub('\t|\n', '', word) 16 meanings.append(m) 17 18words_dict = dict(zip(english_words, meanings)) 19 20 21n_tests = 50 22n_questions = 5 23 24for test_num in range(n_tests): 25 with open('英単語テスト_{:02d}.txt'.format(test_num + 1), 'w')as f: 26 27 f.write('出席番号:\n' 28 '名前:\n\n' 29 '第{}回 英単語テスト\n\n'.format(test_num + 1)) 30 31 for question_num in range(n_questions): 32 question_word = random.choice(english_words) 33 correct_answer = words_dict[question_word] 34 35 meanings_copy = meanings.copy() 36 meanings_copy.remove(correct_answer) 37 wrong_answers = random.sample(meanings_copy, 3) 38 39 answer_options = [correct_answer] + wrong_answers 40 41 random.shuffle(answer_options) 42 43 f.write('問い{}. {}\n\n'.format(question_num + 1, question_word)) 44 45 for i in range(4): 46 f.write('{}. {}\n'.format(i + 1, answer_options[i])) 47 f.write('\n\n')
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/12 10:42