The current code would skip the first instance of each of the USMLE step questions.
I have fixed the code to consider all the questions and not skip the first question.
The fix could also be the following:
if skip_if_exists and question["no"] <= len(answers):
The current code would skip the first instance of each of the USMLE step questions. I have fixed the code to consider all the questions and not skip the first question.
The fix could also be the following:
if skip_if_exists and question["no"] <= len(answers):