こんばんは。
英単語の問題集を作ろうと考えています。
しかし、エラーが起こってしまいます。
どこが悪いのかがわかりません。
わかる方教えてください。
よろしくお願いします。
import re
import random
n_tests=50
n_questions=50
for test_num in range(n_tests):
with open('英単語テスト_{:02d}.txt'.format(test_num + 1), 'w') as f:
f.write('出席番号:\n' '名前:\n\n' '第{}回英単語テスト\n\n'.format(test_num + 1)) for question_num in range(n_questions): question_word=random.choice(english_words) correct_answer=words_dict[question_word] print(english_words) print(question_word)
↓エラーメッセージ
File "<ipython-input-18-37e7b214cb9e>", line 7
with open('英単語テスト_{:02d}.txt'.format(test_num + 1), 'w') as f:
^
SyntaxError: invalid syntax
回答1件
あなたの回答
tips
プレビュー