Update app.py
Browse files
app.py
CHANGED
@@ -23,6 +23,8 @@ def check(answers, questions_data):
|
|
23 |
else:
|
24 |
result = f"{i}: ✖️ ({question_data['wrong_answer_text']})"
|
25 |
results.append(result)
|
|
|
|
|
26 |
|
27 |
return "\n".join(results)
|
28 |
|
|
|
23 |
else:
|
24 |
result = f"{i}: ✖️ ({question_data['wrong_answer_text']})"
|
25 |
results.append(result)
|
26 |
+
if i < len(questions_data): # Добавляем разделительную линию, кроме последнего элемента
|
27 |
+
results.append("___\n\n")
|
28 |
|
29 |
return "\n".join(results)
|
30 |
|