字典中元素的個數計算
字典中的鍵名
加粗樣式字典中的鍵值
字典的鍵名以及對應的鍵值
字典的遍歷
方法一
方法二
字典中元素的個數計算len(字典名)
舉例:
person={"姓名":"張三","年齡":20,"性別":"男"}print(len(person))
輸出:
字典中的鍵名3
字典名.keys()
舉例:
person={"姓名":"張三","年齡":20,"性別":"男"}print(person.keys())persons=person.keys()print(type(persons))
輸出:
加粗樣式字典中的鍵值dict_keys(['姓名', '年齡', '性別'])
<class 'dict_keys'>
字典名.values()
舉例:
person={"姓名":"張三","年齡":20,"性別":"男"}print(person.values())persons=person.values()print(type(persons))
輸出:
字典的鍵名以及對應的鍵值dict_values(['張三', 20, '男'])
<class 'dict_values'>
字典名.items()
person={"姓名":"張三","年齡":20,"性別":"男"}print(person.items())persons=person.items()print(type(persons))
輸出:
字典的遍歷dict_items([('姓名', '張三'), ('年齡', 20), ('性別', '男')])
<class 'dict_items'>
鍵名,鍵值,鍵名對應鍵值的遍歷。
方法一舉例:
person={"姓名":"張三","年齡":20,"性別":"男"}persons_1=person.keys()persons_2=person.values()persons_3=person.items()for a in persons_1://鍵名的遍歷 print(a,end=' ')print("\n")for b in persons_2://鍵值的遍歷 print(b,end=' ')print("\n")for c in persons_3://鍵名與對應的鍵值的遍歷 print(c,end=' ')
輸出:
方法二姓名 年齡 性別
張三 20 男
('姓名', '張三') ('年齡', 20) ('性別', '男')
person={"姓名":"張三","年齡":20,"性別":"男"}for keys in person.keys()://鍵名的遍歷 print(keys,end=' ')print("\n")for values in person.values()://鍵值的遍歷 print(values,end=' ')print("\n")for key,values in person.items()://鍵名與對應的鍵值的遍歷 print(key,values)
輸出:
姓名 年齡 性別
張三 20 男
姓名 張三
年齡 20
性別 男
到此這篇關於Python中字典及遍歷常用函數的使用詳解的文章就介紹到這了,更多相關Python字典遍歷內容請搜索軟件開發網以前的文章或繼續浏覽下面的相關文章希望大家以後多多支持軟件開發網!