08/12/2019, 00:23
Hàm Dictionary keys() trong Python
previous Hàm Dictionary keys() trong Python trả về tất cả các key của một Dictionary. Cú pháp Cú pháp của keys() trong Python: dict.keys() Ví dụ hàm Dictionary keys() trong Python Ví ...
previous
Hàm Dictionary keys() trong Python trả về tất cả các key của một Dictionary.
Cú pháp
Cú pháp của keys() trong Python:
dict.keys()
Ví dụ hàm Dictionary keys() trong Python
Ví dụ sau minh họa cách sử dụng của hàm keys() trong Python.
dict1 = {'name': 'Viet', 'age': 22, 'address': 'Hanoi'} print ("Cac keys cua dict1: ", dict1.keys())
Chạy chương trình Python trên sẽ cho kết quả:
Cac keys cua dict1: dict_keys(['name', 'age', 'address'])
previous