04/12/2019, 09:44

Hàm Dictionary clear() trong Python

previous Hàm Dictionary clear() trong Python xóa tất cả phần tử của Dictionary. Cú pháp Cú pháp của clear() trong Python: dict.clear() Ví dụ hàm Dictionary clear() trong Python Ví ...

previous

Hàm Dictionary clear() trong Python xóa tất cả phần tử của Dictionary.

Cú pháp

Cú pháp của clear() trong Python:


dict.clear()

Ví dụ hàm Dictionary clear() trong Python

Ví dụ sau minh họa cách sử dụng của clear() trong Python.


dict1 = {'name': 'Viet', 'age': 22, 'address': 'Hanoi'}

print ("Do dai Dict1 la:, ", len(dict1))

dict1.clear()

print ("Dict1 sau khi clear la:, ", dict1)
print ("Do dai Dict1 sau khi clear la:, ", len(dict1))

Chạy chương trình Python trên sẽ cho kết quả:

Do dai Dict1 la:,  3
Dict1 sau khi clear la:,  {}
Do dai Dict1 sau khi clear la:,  0
previous
0