From 6133a92b811bfb8539da915a13b11d399bdafd8e Mon Sep 17 00:00:00 2001 From: Axel Amador Date: Mon, 23 Feb 2026 12:31:21 +0100 Subject: [PATCH 1/2] Update README.es.md with for loop instruction Added instruction to use a for loop for the delete_person function. --- exercises/08-Delete_element/README.es.md | 1 + 1 file changed, 1 insertion(+) diff --git a/exercises/08-Delete_element/README.es.md b/exercises/08-Delete_element/README.es.md index f96a25e4..9fb0f055 100644 --- a/exercises/08-Delete_element/README.es.md +++ b/exercises/08-Delete_element/README.es.md @@ -5,6 +5,7 @@ La única forma de borrar a `Daniella` de la lista (sin trampas) sería crear un ## 📝 Instrucciones: 1. Por favor, crea una función `delete_person` que elimine a una persona dada de una lista y devuelva una nueva lista sin esa persona. +2. Aunque hay diferentes formas de conseguir el resultado esperado, en este ejercicio queremos que iteres con el bucle `for`. ## 💻 Resultado esperado: From dc2e37e2997084945604bc09b73e6a4b568ca28b Mon Sep 17 00:00:00 2001 From: Axel Amador Date: Mon, 23 Feb 2026 12:42:39 +0100 Subject: [PATCH 2/2] Update README's with for loop requirement for deletion Added instruction to use a for loop in delete_person function. --- exercises/08-Delete_element/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/exercises/08-Delete_element/README.md b/exercises/08-Delete_element/README.md index d3da0ed5..e6d9e5de 100644 --- a/exercises/08-Delete_element/README.md +++ b/exercises/08-Delete_element/README.md @@ -5,6 +5,7 @@ The only way to delete `Daniella` from the list (without cheating) would be to c ## 📝 Instructions: 1. Please create a `delete_person` function that deletes any given person from the list and returns a new list without that person. +2. Although there are different ways to achieve the expected result in this exercise we want you to iterate using a `for` loop. ## 💻 Expected result: