python 字典訪問的三種方法

2021-07-03 23:14:39 字數 900 閱讀 6419

定義字典 dic =

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()返回的是iterat

or物件。例如:

print dic.items()        #[('a', 'hello'), ('c', 'you'), ('b', 'how')]

print dic.iteritems()   #

深究:iteritor是迭代器的意思,一次返回乙個資料項,直到沒有為止。

for i in dic.iteritems():

print i

結果:('a', 'hello')

('c', 'you')

('b', 'how')

python 字典訪問的三種方法

定義字典 dic 方法一 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...

python 字典訪問的三種方法

分享一下我老師大神的人工智慧教程!零基礎,通俗易懂!定義字典 dic 方法一 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...

python字典訪問的三種方法

摘自 定義字典 dic 方法一 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 後面有個逗號,自動生成乙個空格 pr...