items() 是 Python 字典(dictionary)對象的一個方法,它返回一個包含字典中所有鍵值對的元素列表。
用法如下:
dict.items()
示例:
fruits = {"apple": 2, "banana": 3, "orange": 5}
items = fruits.items()
print(items) # 輸出:dict_items([('apple', 2), ('banana', 3), ('orange', 5)])
items() 方法返回一個 dict_items 對象,其中每個元素都是一個包含鍵值對的元組。你可以通過遍歷這個對象來訪問每個鍵值對,或者將其轉換為列表、元組等其他數據結構進行進一步處理。