Contenido del Curso
Estructuras de Datos en Python
Estructuras de Datos en Python
El Método popitem()
Los diccionarios también tienen un método popitem()
que elimina y devuelve el último par clave-valor.
book = { "title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813, "genre": "Romance" } # Removing the last key-value pair using popitem() popped_item = book.popitem() # Printing the updated dictionary and the removed pair print("Removed item:", popped_item) print("Updated dictionary:", book)
Swipe to show code editor
Usa el método popitem()
para eliminar el último par clave-valor añadido del diccionario book
y imprímelo.
Nota
El método
popitem()
devuelve el par eliminado como una tupla.
¡Gracias por tus comentarios!
El Método popitem()
Los diccionarios también tienen un método popitem()
que elimina y devuelve el último par clave-valor.
book = { "title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813, "genre": "Romance" } # Removing the last key-value pair using popitem() popped_item = book.popitem() # Printing the updated dictionary and the removed pair print("Removed item:", popped_item) print("Updated dictionary:", book)
Swipe to show code editor
Usa el método popitem()
para eliminar el último par clave-valor añadido del diccionario book
y imprímelo.
Nota
El método
popitem()
devuelve el par eliminado como una tupla.
¡Gracias por tus comentarios!
El Método popitem()
Los diccionarios también tienen un método popitem()
que elimina y devuelve el último par clave-valor.
book = { "title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813, "genre": "Romance" } # Removing the last key-value pair using popitem() popped_item = book.popitem() # Printing the updated dictionary and the removed pair print("Removed item:", popped_item) print("Updated dictionary:", book)
Swipe to show code editor
Usa el método popitem()
para eliminar el último par clave-valor añadido del diccionario book
y imprímelo.
Nota
El método
popitem()
devuelve el par eliminado como una tupla.
¡Gracias por tus comentarios!
Los diccionarios también tienen un método popitem()
que elimina y devuelve el último par clave-valor.
book = { "title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813, "genre": "Romance" } # Removing the last key-value pair using popitem() popped_item = book.popitem() # Printing the updated dictionary and the removed pair print("Removed item:", popped_item) print("Updated dictionary:", book)
Swipe to show code editor
Usa el método popitem()
para eliminar el último par clave-valor añadido del diccionario book
y imprímelo.
Nota
El método
popitem()
devuelve el par eliminado como una tupla.