python 字典訪問的三種方法
定義字典 dic = {'a':"hello",'b':"how",'c':"you"}
方法一:
for key in dic:
print key,dic[key]
print key + str(dic[key])
結果:
a hello
ahello
c you
cyou
b how
bhow
細節:
print key,dic[key],後面有個逗號,自動生成一個空格
print key + str(dic[key]),連線兩個字串,用的是加號,直接輸出,中間不加逗號
方法二:
for (k,v) in dic.items():
print "dic[%s]="%k,v
結果:
dic[a]= hello
dic[c]= you
dic[b]= how
方法三:
for k,v in dic.iteritems():
print "dic[%s]="%k,v
結果:
dic[a]= hello
dic[c]= you
dic[b]= how
對比:
items()返回的是列表物件,而iteritems()返回的是iterator物件。例如:
print dic.items() #[('a', 'hello'), ('c', 'you'), ('b', 'how')]
print dic.iteritems() #<dictionary-itemiterator object at 0x020E9A50>
深究:iteritor是迭代器的意思,一次返回一個資料項,直到沒有為止
for i in dic.iteritems():
print i
結果:('a', 'hello')
('c', 'you')
('b', 'how')
相關文章
- 關於python訪問字典的方法Python
- python清空字典的兩種方法比較Python
- OC中陣列、字典的遍歷的三種方法陣列
- Python中字典dict的11種不同操作方法Python
- 訪問資料庫的幾種方法資料庫
- smarty中三種變數的訪問方式變數
- 判斷python字典中key是否存在的兩種方法Python
- 【Python】字典的setdefault()方法Python
- C++ 的三種訪問許可權與三種繼承方式C++訪問許可權繼承
- logmnr中三種抽取和儲存資料字典的方法
- bash shell指令碼訪問PostgreSQL的三種方式指令碼SQL
- C#中陣列的三種訪問方式C#陣列
- Python---字典方法Python
- SpringMVC訪問靜態資源的三種方式SpringMVC
- 初學Python(三)——字典Python
- Python合併字典的七種方式!Python
- python字典的四種遍歷方式Python
- python下載檔案的三種方法Python
- python 字典修改鍵(key)的方法Python
- python輸出字典的方法整理Python
- 增強網站可訪問性的25種方法網站
- Python 字典 fromkeys()方法Python
- python字典鍵的特性及字典內建函式&方法Python函式
- Python 中刪除列表元素的三種方法Python
- Python訪問Oracle的兩種資料獲取方式PythonOracle
- Linux禁止某個IP地址訪問的幾種方法Linux
- C#各種加密方法,字典排序C#加密排序
- Python 安裝第三方模組的三種方法Python
- Spring Boot中從自定義Logback訪問Spring Bean三種方法Spring BootBean
- python 字典內建方法get的使用Python
- 解決代理超時問題的三種方法
- python字典dict操作方法Python
- Python基礎之(三)之字典Python
- 三種提高Python程式碼效能的簡便方法Python
- Python佇列的三種佇列實現方法Python佇列
- 淺談Python變數賦值的三種方法!Python變數賦值
- Python逐行讀取檔案常用的三種方法!Python
- Python判定IP地址合法性的三種方法Python