亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python中的字典操作及字典函數

發布時間:2020-10-13 10:01:20 來源:腳本之家 閱讀:177 作者:wiz_333 欄目:開發技術

字典

dict_fruit = {'apple':'蘋果','banana':'香蕉','cherry':'櫻桃','avocado':'牛油果','watermelon':'西瓜'} 

字典的操作

#字典的遍歷方式 
#默認遍歷(遍歷key) 
for value in dict_fruit: 
  print(value) 
''''' 
遍歷出的值: 
watermelon 
apple 
cherry 
avocado 
banana 
''' 
#使用key遍歷(與默認遍歷一樣) 
for key in dict_fruit.keys(): 
  print(key) 
''''' 
遍歷出的值: 
watermelon 
apple 
cherry 
avocado 
banana 
''' 
#使用value遍歷 
for value in dict_fruit.values(): 
  print(value) 
''''' 
遍歷出的值: 
蘋果 
牛油果 
香蕉 
西瓜 
櫻桃 
''' 
#使用key,value遍歷 
for key,value in dict_fruit.items(): 
  print(key+'--->'+value) 
''''' 
遍歷出的值: 
avocado--->牛油果 
apple--->蘋果 
banana--->香蕉 
cherry--->櫻桃 
watermelon--->西瓜 
''' 
#創建字典 
#使用dict() 
res = dict(brand = '品牌',size='尺碼',color='顏色') 
print(res,type(res)) 
''''' 
res結果: 
{'size': '尺碼', 'brand': '品牌', 'color': '顏色'} <class 'dict'> 
''' 
#使用zip()和dict() 
keys = ['1','2','3','4','5'] 
values = [1,2,3,4,5] 
res = dict(zip(keys,values)) 
print(res,type(res)) 
''''' 
res結果: 
{'3': 3, '4': 4, '1': 1, '2': 2, '5': 5} <class 'dict'> 
''' 
#字典的推導式 
res = {k+'的中文是'+v for k,v in dict_fruit.items()} 
print(res) 
''''' 
res結果: 
{'watermelon的中文是西瓜', 'avocado的中文是牛油果', 'banana的中文是香蕉', 'cherry的中文是櫻桃', 'apple的中文是蘋果'} 
''' 

字典的函數

#清空字典 
test1 = {1:'1'} 
test1.clear() 
print(test1) 
''''' 
test1結果: 
{} 
''' 
#復制字典(復制成一個新字典) 
test2 = {2:'2'} 
test2_copy = test2.copy() 
print(test2_copy) 
''''' 
test2結果: 
{2: '2'} 
''' 
#使用指定的key和value制作一個字典 
list_test = ['a','b','c'] 
test3 = {}.fromkeys(list_test,'ojbk') 
print(test3) 
''''' 
test3結果: 
{'a': 'ojbk', 'b': 'ojbk', 'c': 'ojbk'} 
''' 
#將一個字典轉化為二級容器(中間容器) 
res = dict_fruit.items() 
print(res,type(res)) 
''''' 
res結果: 
dict_items([('avocado', '牛油果'), ('apple', '蘋果'), ('banana', '香蕉'), ('watermelon', '西瓜'), ('cherry', '櫻桃')]) <class 'dict_items'> 
''' 
#將字典的key組成新的容器 
res = dict_fruit.keys() 
print(res,type(res)) 
''''' 
res結果: 
dict_keys(['watermelon', 'cherry', 'avocado', 'apple', 'banana']) <class 'dict_keys'> 
''' 
#將字典的value組成新的容器 
res = dict_fruit.values() 
print(res,type(res)) 
''''' 
res結果: 
dict_values(['牛油果', '香蕉', '櫻桃', '蘋果', '西瓜']) <class 'dict_values'> 
''' 
#根據key刪除字典中的數據 
test4 = {1:'1',2:'2',3:'3'} 
test4.pop(2) 
print(test4) 
''''' 
test4結果: 
{1: '1', 3: '3'} 
''' 
#依次彈出(刪除)字典中的數據 
test5 = {1:'1',2:'2',3:'3',4:'4',5:'5'} 
test5.popitem() 
print(test5) 
test5.popitem() 
print(test5) 
test5.popitem() 
print(test5) 
''''' 
test5依次結果: 
{2: '2', 3: '3', 4: '4', 5: '5'} 
{3: '3', 4: '4', 5: '5'} 
{4: '4', 5: '5'} 
''' 
#更新dict中的數據(更新一個不存在的key時,可用于添加新數據) 
test6 = {'super':'Eric','ssuper':'Cbabe','sssuper':'Gogo','supreme':'wiz333'} 
#更新數據 
test6.update(super='Eric-LPL') 
print(test6) 
#添加數據 
test6.update(niceboy='Bigmao') 
print(test6) 
''''' 
test6依次結果: 
{'ssuper': 'Cbabe', 'supreme': 'wiz333', 'sssuper': 'Gogo', 'super': 'Eric-LPL'} 
{'ssuper': 'Cbabe', 'supreme': 'wiz333', 'niceboy': 'Bigmao', 'sssuper': 'Gogo', 'super': 'Eric-LPL'} 
''' 
#獲取dict中的數據(使用key獲取) 
test7 = {1:'1',2:'2',3:'3',4:'4',5:'5'} 
res = test7.get(1) 
print(res,type(res)) 
''''' 
test7結果: 
1 <class 'str'> 
''' 
#給dict添加數據(setdefault,不能用于更新數據) 
test8 = {1:'1',2:'2',3:'3',4:'4',5:'5'} 
test8.setdefault(6,'6') 
print(test8) 
''''' 
test8結果: 
{1: '1', 2: '2', 3: '3', 4: '4', 5: '5', 6: '6'} 
''' 

總結

以上所述是小編給大家介紹的python中的字典操作及字典函數,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

金坛市| 资源县| 亚东县| 大连市| 包头市| 皋兰县| 志丹县| 兰西县| 安乡县| 中宁县| 双桥区| 栾城县| 武鸣县| 水城县| 博客| 额尔古纳市| 遂宁市| 宜兰市| 手机| 大城县| 丹东市| 长春市| 珲春市| 永兴县| 即墨市| 天镇县| 元阳县| 新密市| 静海县| 清水县| 南安市| 塘沽区| 红安县| 运城市| 柞水县| 政和县| 石嘴山市| 虞城县| 瑞安市| 中西区| 农安县|