Зміст курсу
Структури Даних в Python
Структури Даних в Python
Видалення зі Словника
У словнику ви можете видаляти ключі за допомогою ключового слова del
. З його допомогою ви можете видаляти конкретні записи або навіть весь словник. Ось як це можна зробити:
# Creating a dictionary dict_1 = {10: 'apple', 20: 'banana', 15: 'cherry', 30: 'apricot', 27: 'grape'} # Deleting a key value del dict_1[30] print(dict_1)
Deleting the Entire Dictionary
If you want to delete the entire dictionary, you can do so with del
. However, be careful—this action removes the dictionary completely, and any further reference to it will raise an error.
book = { "title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813, "genre": "Romance" } # Deleting the entire dictionary del book # Attempting to print the dictionary after deletion will cause an error print(book) # This line will raise a NameError
Swipe to show code editor
The isbn
key (International Standard Book Number) was incorrectly added. Use the del
keyword to remove it from the dictionary.
Дякуємо за ваш відгук!
Видалення зі Словника
У словнику ви можете видаляти ключі за допомогою ключового слова del
. З його допомогою ви можете видаляти конкретні записи або навіть весь словник. Ось як це можна зробити:
# Creating a dictionary dict_1 = {10: 'apple', 20: 'banana', 15: 'cherry', 30: 'apricot', 27: 'grape'} # Deleting a key value del dict_1[30] print(dict_1)
Deleting the Entire Dictionary
If you want to delete the entire dictionary, you can do so with del
. However, be careful—this action removes the dictionary completely, and any further reference to it will raise an error.
book = { "title": "Pride and Prejudice", "author": "Jane Austen", "year": 1813, "genre": "Romance" } # Deleting the entire dictionary del book # Attempting to print the dictionary after deletion will cause an error print(book) # This line will raise a NameError
Swipe to show code editor
The isbn
key (International Standard Book Number) was incorrectly added. Use the del
keyword to remove it from the dictionary.
Дякуємо за ваш відгук!