Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Видалення зі Словника | Словник
Структури Даних в Python
course content

Зміст курсу

Структури Даних в Python

Структури Даних в Python

1. Список
2. Словник
3. Кортеж
4. Множина

book
Видалення зі Словника

У словнику ви можете видаляти ключі за допомогою ключового слова del. З його допомогою ви можете видаляти конкретні записи або навіть весь словник. Ось як це можна зробити:

123456
# 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)
copy

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.

1234567891011
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
copy
Завдання
test

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.

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 2. Розділ 6
toggle bottom row

book
Видалення зі Словника

У словнику ви можете видаляти ключі за допомогою ключового слова del. З його допомогою ви можете видаляти конкретні записи або навіть весь словник. Ось як це можна зробити:

123456
# 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)
copy

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.

1234567891011
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
copy
Завдання
test

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.

Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
Все було зрозуміло?

Як ми можемо покращити це?

Дякуємо за ваш відгук!

Секція 2. Розділ 6
Switch to desktopПерейдіть на комп'ютер для реальної практикиПродовжуйте з того місця, де ви зупинились, використовуючи один з наведених нижче варіантів
We're sorry to hear that something went wrong. What happened?
some-alt