file_name = f"generated_mcq_quiz_{current_time}.txt" file_path = os.path.join(output_folder, file_name) print(f"Saving the generated MCQs to file: '{file_path}'...") with open(file_path, "w") as f: for i, question in enumerate(quiz, 1): f.write(f"Question {i}:\n{quest...