日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程语言 > python >内容正文

python

Python Dict用法

發布時間:2025/4/14 python 17 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Python Dict用法 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
python]dictionary方法說明 2007-05-19 23:24
申明 m={}; [python]dictionary方法說明 2007-03-13 18:10
Operation Result Notes
len(a) the number of items in?a 得到字典中元素的個數
?
a[k] the item of?a?with key?k 取得鍵K所對應的值
(1), (10)
a[k] =?v set?a[k]?to?v 設定鍵k所對應的值成為v
?
del?a[k] remove?a[k]?from?a 從字典中刪除鍵為k的元素
(1)
a.clear() remove all items from?a 清空整個字典
?
a.copy() a (shallow) copy of?a 得到字典副本
?
k?in?a True?if?a?has a key?k, else?False 字典中存在鍵k則為返回True,沒有則返回False
(2)
k?not in?a Equivalent to?not?k?in?a???字典中不存在鍵k則為返回true,反之返回False (2)
a.has_key(k) Equivalent to?k?in?a, use that form in new code 等價于k in a ?
a.items() a copy of?a's list of (key,?value) pairs 得到一個鍵,值的list (3)
a.keys() a copy of?a's list of keys 得到鍵的list (3)
a.update([b]) updates (and overwrites) key/value pairs from?b從b字典中更新a字典,如果鍵相同則更新,a中不存在則追加 (9)
a.fromkeys(seq[,?value]) Creates a new dictionary with keys from?seq?and values set to?value?
(7)
a.values() a copy of?a's list of values (3)
a.get(k[,?x]) a[k]?if?k?in?a, else?x (4)
a.setdefault(k[,?x]) a[k]?if?k?in?a, else?x?(also setting it) (5)
a.pop(k[,?x]) a[k]?if?k?in?a, else?x?(and remove k) (8)
a.popitem() remove and return an arbitrary (key,?value) pair (6)
a.iteritems() return an iterator over (key,?value) pairs (2), (3)
a.iterkeys() return an iterator over the mapping's keys (2), (3)
a.itervalues() return an iterator over the mapping's values (2), (3)

#字典的添加、刪除、修改操作
dict = {"a" : "apple", "b" : "banana", "g" : "grape", "o" : "orange"}
dict["w"] = "watermelon"
del(dict["a"])
dict["g"] = "grapefruit"
print dict.pop("b")
print dict
dict.clear()
print dict

#字典的遍歷
dict = {"a" : "apple", "b" : "banana", "g" : "grape", "o" : "orange"}
for k in dict:
??? print "dict[%s] =" % k,dict[k]

#字典items()的使用
dict = {"a" : "apple", "b" : "banana", "c" : "grape", "d" : "orange"}
#每個元素是一個key和value組成的元組,以列表的方式輸出
print dict.items()

#調用items()實現字典的遍歷
dict = {"a" : "apple", "b" : "banana", "g" : "grape", "o" : "orange"}
for (k, v) in dict.items():
??? print "dict[%s] =" % k, v

#調用iteritems()實現字典的遍歷
dict = {"a" : "apple", "b" : "banana", "c" : "grape", "d" : "orange"}
print dict.iteritems()
for k, v in dict.iteritems():
??? print "dict[%s] =" % k, v
for (k, v) in zip(dict.iterkeys(), dict.itervalues()):
??? print "dict[%s] =" % k, v
???


#使用列表、字典作為字典的值
dict = {"a" : ("apple",), "bo" : {"b" : "banana", "o" : "orange"}, "g" : ["grape","grapefruit"]}
print dict["a"]
print dict["a"][0]
print dict["bo"]
print dict["bo"]["o"]
print dict["g"]
print dict["g"][1]

?

dict = {"a" : "apple", "b" : "banana", "c" : "grape", "d" : "orange"}
#輸出key的列表
print dict.keys()
#輸出value的列表
print dict.values()
#每個元素是一個key和value組成的元組,以列表的方式輸出
print dict.items()

dict = {"a" : "apple", "b" : "banana", "c" : "grape", "d" : "orange"}
it = dict.iteritems()
print it

#字典中元素的獲取方法
dict = {"a" : "apple", "b" : "banana", "c" : "grape", "d" : "orange"}
print dict
print dict.get("c", "apple")?????????
print dict.get("e", "apple")
#get()的等價語句
D = {"key1" : "value1", "key2" : "value2"}
if "key1" in D:
??? print D["key1"]
else:
??? print "None"

#字典的更新
dict = {"a" : "apple", "b" : "banana"}
print dict
dict2 = {"c" : "grape", "d" : "orange"}
dict.update(dict2)
print dict
#udpate()的等價語句
D = {"key1" : "value1", "key2" : "value2"}
E = {"key3" : "value3", "key4" : "value4"}
for k in E:
??? D[k] = E[k]
print D
#字典E中含有字典D中的key
D = {"key1" : "value1", "key2" : "value2"}
E = {"key2" : "value3", "key4" : "value4"}
for k in E:
??? D[k] = E[k]
print D

#設置默認值
dict = {}
dict.setdefault("a")
print dict
dict["a"] = "apple"
dict.setdefault("a","default")
print dict

#調用sorted()排序
dict = {"a" : "apple", "b" : "grape", "c" : "orange", "d" : "banana"}
print dict??
#按照key排序?
print sorted(dict.items(), key=lambda d: d[0])
#按照value排序?
print sorted(dict.items(), key=lambda d: d[1])

#字典的淺拷貝
dict = {"a" : "apple", "b" : "grape"}
dict2 = {"c" : "orange", "d" : "banana"}
dict2 = dict.copy()
print dict2


#字典的深拷貝
import copy
dict = {"a" : "apple", "b" : {"g" : "grape","o" : "orange"}}
dict2 = copy.deepcopy(dict)
dict3 = copy.copy(dict)
dict2["b"]["g"] = "orange"
print dict
dict3["b"]["g"] = "orange"
print dict

轉載163某博客


總結

以上是生活随笔為你收集整理的Python Dict用法的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。