Зміст курсу
Структури Даних в Python
Структури Даних в Python
Метод clear()
У словниках також існує зручний метод clear()
, який видаляє всі елементи, залишаючи порожній словник. Ось як це працює.
numbers = {1: 1, 2: 4, 3: 9, 5: 25, 6: 36, 7: 49, 8: 64, 9: 81, 10: 100} numbers.clear() print(numbers)
Swipe to show code editor
The book is lost, and all records need to be cleared. Use the clear()
method to remove all items from the book
dictionary.
Дякуємо за ваш відгук!
Метод clear()
У словниках також існує зручний метод clear()
, який видаляє всі елементи, залишаючи порожній словник. Ось як це працює.
numbers = {1: 1, 2: 4, 3: 9, 5: 25, 6: 36, 7: 49, 8: 64, 9: 81, 10: 100} numbers.clear() print(numbers)
Swipe to show code editor
The book is lost, and all records need to be cleared. Use the clear()
method to remove all items from the book
dictionary.
Дякуємо за ваш відгук!