Tengo lo siguiente:
answers = Answer.objects.filter(id__in=[answer.id for answer in answer_set.answers.all()])
Entonces despúes:
for i in range(len(answers)):
# iterate through all existing QuestionAnswer objects
for existing_question_answer in existing_question_answers:
# if an answer is already associated, remove it from the
# list of answers to save
if answers[i].id == existing_question_answer.answer.id:
answers.remove(answers[i]) # doesn't work
existing_question_answers.remove(existing_question_answer)
Me sale un error:
'QuerySet' object has no attribute 'remove'
He intentado todo tipo de convertir el QuerySet en un conjunto o lista estándar. Nada funciona.
¿Cómo puedo eliminar un elemento del QuerySet para que no lo elimine de la base de datos y no devuelva un nuevo QuerySet (ya que está en un bucle que no funcionará)?