程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python中字典及遍歷常用函數的使用詳解

編輯:Python

目錄

字典中元素的個數計算

字典中的鍵名

加粗樣式字典中的鍵值

字典的鍵名以及對應的鍵值

字典的遍歷

方法一

方法二

字典中元素的個數計算

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字典遍歷內容請搜索軟件開發網以前的文章或繼續浏覽下面的相關文章希望大家以後多多支持軟件開發網!



  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved