Rooni commited on
Commit
b471485
1 Parent(s): aeb22f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
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