if __name__ == '__main__': score = 0 current_round = 0 question_list = read_file() while score < 5: current_round = next_round(current_round) question_list = ask_questions(question_list) score = 5 - len(question_list)if __name__ == '__main__': score = 0 current_round = 0 question_list = read_file() while score < 5: current_round = next_round(current_round) question_list = ask_questions(question_list) score = 5 - len(question_list)
This block has the code for the round