您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關python字典類型的底層如何實現的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
1、字典類型的底層基于哈希表。
2、字典中鍵的數據類型必須是靜態數據類型,如簡單的數據類型、字符串和元組。字典類型是基于哈希表的數據結構。
實例
# -*- coding: utf-8 -*- """ @Time : 2021/8/14 21:04 @Author : LYP @FileName: dic_Python.py @SoftWare: PyCharm """ dict2 = { 'abc': 123, 98.6: 37 } scores = {'數學': 95, '英語': 92, '語文': 84, '化學':90 , '生物':91 , '物理':80} dic={} dic[1]='hello' dic[2]='world' #print(dic) # print(dict2) # # print(scores) print("scores['數學']:",scores['數學']) print("scores['英語']:",scores['英語']) print("scores['化學']:",scores.get('化學')) print("scores['生物']:",scores.get('生物')) print(scores) for key,value in scores.items(): print(key,"----->",value) print("向字典中添加數值") scores['歷史']=80 print(scores) scores.setdefault('地理',89) print(scores) print("刪除元素") del scores['地理'] print(scores) scores.pop('歷史') print(scores) #scores.clear() #print(scores) print("修改值") print(scores) scores['數學']=100 print(scores) print("判斷字典中是否包含某個鍵值對") print("scores中是否包括數學",'數學' in scores) print("scores中是否包括地理",'地理' in scores) print("scores中是否包括歷史",'歷史' not in scores) print(scores.keys()) print(scores.values()) print(scores.items())
感謝各位的閱讀!關于“python字典類型的底層如何實現”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。