91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

python字典類型的底層如何實現

發布時間:2021-09-17 13:34:30 來源:億速云 閱讀:93 作者:小新 欄目:編程語言

這篇文章給大家分享的是有關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字典類型的底層如何實現”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

西和县| 新巴尔虎左旗| 南木林县| 太白县| 恭城| 固原市| 扶绥县| 雅江县| 毕节市| 阜阳市| 报价| 邵武市| 新竹市| 犍为县| 临江市| 丹棱县| 平乐县| 康乐县| 任丘市| 阳信县| 塔城市| 武冈市| 绥德县| 天水市| 通榆县| 九江县| 建始县| 东阿县| 正阳县| 上高县| 昆山市| 汾西县| 兴城市| 尉犁县| 莎车县| 兖州市| 翼城县| 余庆县| 平陆县| 盈江县| 隆化县|