您好,登錄后才能下訂單哦!
如何用生活里字典的實際應用來介紹Python基礎中字典的知識,很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
如果有列表 ,需要對"xiaoWang"這個名字進行修改,則要通過對應的索引值進行代碼修改。
nameList = ['xiaoZhang', 'xiaoWang', 'xiaoLi'] nameList[1] = 'xiaoxiaoWang
如果列表的順序發生了變化,如下:
nameList = ['xiaoWang', 'xiaoZhang', 'xiaoLi'];
此時就需要修改下標,才能完成名字的修改。
nameList[0] = 'xiaoxiaoWang'
有沒有方法,既能存儲多個數據,還能在訪問元素的很方便就能夠定位到需要的那個元素呢?這就是字典。
字典和列表一樣,也能夠存儲多個數據。
列表中找某個元素時,是根據下標進行的。
字典中找某個元素時,是根據'名字'(就是冒號:前面的那個值,例如上面代碼中的'name'、'id'、'sex')。
字典的每個元素由2部分組成,鍵:值。例如 'name':'班長' ,其中'name'為鍵,'班長'為值。
根據鍵訪問值
例:
info = {'name':'班長', 'id':100, 'sex':'f', 'address':'地球亞洲中國北京'} print(info['name']) print(info['address'])
運行結果:
若訪問不存在的鍵,則會報錯:
>>> info['age'] Traceback (most recent call last): File "<stdin>", line 1, in <module> KeyError: 'age'
在我們不確定字典中是否存在某個鍵而又想獲取其值時,可以使用get方法,還可以設置默認值。
>>> age = info.get('age') >>> age #'age'鍵不存在,所以age為None >>> type(age) <type 'NoneType'> >>> age = info.get('age', 18) # 若info中不存在'age'這個鍵,就返回默認值18 >>> print(age) 18 #運行結果
1. 字典的常見操作1
info = {'name':'班長', 'sex':'f', 'address':'地球亞洲中國北京'} print('id為:%d'%info['id'])
運行結果:
如果在使用 變量名['鍵'] = 數據 時,這個“鍵”在字典中,不存在,那么就會新增這個元素。
添加新的元素。
info = {'name':'班長', 'sex':'f', 'address':'地球亞洲中國北京'} # print('id為:%d'%info['id'])#程序會終端運行,因為訪問了不存在的鍵 newId = input('請輸入新的學號') info['id'] = newId print('添加之后的id為:%d'%info['id'])
運行結果:
請輸入新的學號188 添加之后的id為: 188
對字典進行刪除操作,有一下幾種:
del
clear()
del刪除指定的元素
info = {'name':'班長', 'sex':'f', 'address':'地球亞洲中國北京'} print('刪除前,%s'%info['name']) del info['name'] print('刪除后,%s'%info['name'])
運行結果:
del刪除整個字典。
info = {'name':'monitor', 'sex':'f', 'address':'China'} print('刪除前,%s'%info) del info print('刪除后,%s'%info)
運行結果:
clear清空整個字典。
info = {'name':'monitor', 'sex':'f', 'address':'China'} print('清空前,%s'%info) info.clear() print('清空后,%s'%info)
運行結果:
字典的每個元素中的數據是可以修改的,只要通過key找到,即可修改。
info = {'name':'班長', 'id':100, 'sex':'f', 'address':'地球亞洲中國北京'} newId = input('請輸入新的學號') info['id'] = int(newId) print('修改之后的id為%d:'%info['id'])
運行結果:
2. 字典的常見操作2
測量字典中,鍵值對的個數。
dict={"name":'zahnsan','sex':'m'} print(len(dict))
運行結果:
返回一個包含字典所有KEY的列表。
dict={"name":'zahnsan','sex':'m'} print(dict.keys())
運行結果:
返回一個包含字典所有value的列表。
dict={"name":'zahnsan','sex':'m'} print(dict.values())
運行結果:
返回一個包含所有(鍵,值)元祖的列表。
dict={"name":'zahnsan','sex':'m'} print(dict.items())
運行結果:
語法:通過for ... in ...:的語法結構,我們可以遍歷字符串、列表、元組、字典等數據結構。
注意 :Python語法的縮進
先看一下字符串,列表和元組是怎么遍歷的。
字符串遍歷
>>> a_str = "hello itcast" >>> for char in a_str: ... print(char,end=' ') ... h e l l o i t c a s t #運行結果
列表遍歷
>>> a_list = [1, 2, 3, 4, 5] >>> for num in a_list: ... print(num,end=' ') ... 1 2 3 4 5 #運行結果
元組遍歷
>>> a_turple = (1, 2, 3, 4, 5) >>> for num in a_turple: ... print(num,end=" ") 1 2 3 4 5 #運行結果
字典遍歷
1 . 遍歷字典的key(鍵)
2 . 遍歷字典的value(值)
3. 遍歷字典的項(元素)
4. 遍歷字典的key-value(鍵值對)
5. enumerate()
chars = ['a', 'b', 'c', 'd'] for i, chr in enumerate(chars): print(i, chr)
運行結果:
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。