https://www.youtube.com/watch?v=xY2_4mX3YSE&t=858s
上の方の動画を参考にして、英単語テストを作っています
以下のようなコードを実行すると実行結果が文字化けしてしまいます。解決策はありますでしょうか。ウィンドウズを使っています。
python
1import re 2import random 3 4source = 'englishword.txt' 5 6with open(source ,encoding="utf-8") as f: 7 data = f.read() 8 9english_words = re.findall('[a-z]+', data) 10ja = re.findall('\s.*\n', data) 11 12meanings = [] 13for word in ja: 14 m = re.sub('\t|\n', '', word) 15 meanings.append(m) 16 17words_dict = dict(zip(english_words, meanings)) 18 19 20n_tests = 50 21n_questions = 5 22 23for test_num in range(n_tests): 24 with open('英単語テスト_{:02d}.txt'.format(test_num + 1), 'w')as f: 25 26 f.write('出席番号:\n' 27 '名前:\n\n' 28 '第{}回 英単語テスト\n\n'.format(test_num + 1)) 29 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')
あなたの回答
tips
プレビュー