99999久久久久久亚洲,欧美人与禽猛交狂配,高清日韩av在线影院,一个人在线高清免费观看,啦啦啦在线视频免费观看www

熱線電話:13121318867

登錄
首頁(yè)精彩閱讀Python 字典(Dictionary)_ python字典操作_python dictionary
Python 字典(Dictionary)_ python字典操作_python dictionary
2016-12-31
收藏

Python 字典(Dictionary)_ python字典操作_python dictionary

字典是另一種可變?nèi)萜髂P?,且可存?chǔ)任意類型對(duì)象。

字典的每個(gè)鍵值(key=>value)對(duì)用冒號(hào)(:)分割,每個(gè)對(duì)之間用逗號(hào)(,)分割,整個(gè)字典包括在花括號(hào)({})中 ,格式如下所示:

d={key1:value1,key2:value2}

鍵必須是唯一的,但值則不必。

值可以取任何數(shù)據(jù)類型,但鍵必須是不可變的,如字符串,數(shù)字或元組。

一個(gè)簡(jiǎn)單的字典實(shí)例:

dict={'Alice':'2341','Beth':'9102','Cecil':'3258'}

也可如此創(chuàng)建字典:

dict1={'abc':456};dict2={'abc':123,98.6:37};


訪問(wèn)字典里的值

把相應(yīng)的鍵放入熟悉的方括弧,如下實(shí)例:

#!/usr/bin/pythondict={'Name':'Zara','Age':7,'Class':'First'};print"dict['Name']: ",dict['Name'];print"dict['Age']: ",dict['Age'];

以上實(shí)例輸出結(jié)果:

dict['Name']:Zaradict['Age']:7

如果用字典里沒(méi)有的鍵訪問(wèn)數(shù)據(jù),會(huì)輸出錯(cuò)誤如下:

#!/usr/bin/pythondict={'Name':'Zara','Age':7,'Class':'First'};print"dict['Alice']: ",dict['Alice'];

以上實(shí)例輸出結(jié)果:

dict['Zara']:Traceback(most recent calllast):File"test.py",line4,in<module>print"dict['Alice']: ",dict['Alice'];KeyError:'Alice'



修改字典

向字典添加新內(nèi)容的方法是增加新的鍵/值對(duì),修改或刪除已有鍵/值對(duì)如下實(shí)例:

#!/usr/bin/pythondict={'Name':'Zara','Age':7,'Class':'First'};dict['Age']=8;# update existing entrydict['School']="DPS School";# Add new entryprint"dict['Age']: ",dict['Age'];print"dict['School']: ",dict['School'];

以上實(shí)例輸出結(jié)果:

dict['Age']:8dict['School']:DPSSchool



刪除字典元素

能刪單一的元素也能清空字典,清空只需一項(xiàng)操作。

顯示刪除一個(gè)字典用del命令,如下實(shí)例:

#!/usr/bin/python# -*- coding: UTF-8 -*-dict={'Name':'Zara','Age':7,'Class':'First'};deldict['Name'];# 刪除鍵是'Name'的條目dict.clear();# 清空詞典所有條目deldict;# 刪除詞典print"dict['Age']: ",dict['Age'];print"dict['School']: ",dict['School'];

但這會(huì)引發(fā)一個(gè)異常,因?yàn)橛胐el后字典不再存在:

dict['Age']:Traceback(most recent calllast):File"test.py",line8,in<module>print"dict['Age']: ",dict['Age'];TypeError:'type'objectisunsubscriptable

注:del()方法后面也會(huì)討論。

字典鍵的特性

字典值可以沒(méi)有限制地取任何python對(duì)象,既可以是標(biāo)準(zhǔn)的對(duì)象,也可以是用戶定義的,但鍵不行。

兩個(gè)重要的點(diǎn)需要記?。?

1)不允許同一個(gè)鍵出現(xiàn)兩次。創(chuàng)建時(shí)如果同一個(gè)鍵被賦值兩次,后一個(gè)值會(huì)被記住,如下實(shí)例:

#!/usr/bin/pythondict={'Name':'Zara','Age':7,'Name':'Manni'};print"dict['Name']: ",dict['Name'];

以上實(shí)例輸出結(jié)果:

dict['Name']:Manni

2)鍵必須不可變,所以可以用數(shù)字,字符串或元組充當(dāng),所以用列表就不行,如下實(shí)例:

#!/usr/bin/pythondict={['Name']:'Zara','Age':7};print"dict['Name']: ",dict['Name'];

以上實(shí)例輸出結(jié)果:

Traceback(most recent calllast):File"test.py",line3,in<module>dict={['Name']:'Zara','Age':7};TypeError:list objects are unhashable



字典內(nèi)置函數(shù)&方法

Python字典包含了以下內(nèi)置函數(shù):

Python字典包含了以下內(nèi)置方法:


數(shù)據(jù)分析咨詢請(qǐng)掃描二維碼

若不方便掃碼,搜微信號(hào):CDAshujufenxi

數(shù)據(jù)分析師資訊
更多

OK
客服在線
立即咨詢
客服在線
立即咨詢
') } function initGt() { var handler = function (captchaObj) { captchaObj.appendTo('#captcha'); captchaObj.onReady(function () { $("#wait").hide(); }).onSuccess(function(){ $('.getcheckcode').removeClass('dis'); $('.getcheckcode').trigger('click'); }); window.captchaObj = captchaObj; }; $('#captcha').show(); $.ajax({ url: "/login/gtstart?t=" + (new Date()).getTime(), // 加隨機(jī)數(shù)防止緩存 type: "get", dataType: "json", success: function (data) { $('#text').hide(); $('#wait').show(); // 調(diào)用 initGeetest 進(jìn)行初始化 // 參數(shù)1:配置參數(shù) // 參數(shù)2:回調(diào),回調(diào)的第一個(gè)參數(shù)驗(yàn)證碼對(duì)象,之后可以使用它調(diào)用相應(yīng)的接口 initGeetest({ // 以下 4 個(gè)配置參數(shù)為必須,不能缺少 gt: data.gt, challenge: data.challenge, offline: !data.success, // 表示用戶后臺(tái)檢測(cè)極驗(yàn)服務(wù)器是否宕機(jī) new_captcha: data.new_captcha, // 用于宕機(jī)時(shí)表示是新驗(yàn)證碼的宕機(jī) product: "float", // 產(chǎn)品形式,包括:float,popup width: "280px", https: true // 更多配置參數(shù)說(shuō)明請(qǐng)參見(jiàn):http://docs.geetest.com/install/client/web-front/ }, handler); } }); } function codeCutdown() { if(_wait == 0){ //倒計(jì)時(shí)完成 $(".getcheckcode").removeClass('dis').html("重新獲取"); }else{ $(".getcheckcode").addClass('dis').html("重新獲取("+_wait+"s)"); _wait--; setTimeout(function () { codeCutdown(); },1000); } } function inputValidate(ele,telInput) { var oInput = ele; var inputVal = oInput.val(); var oType = ele.attr('data-type'); var oEtag = $('#etag').val(); var oErr = oInput.closest('.form_box').next('.err_txt'); var empTxt = '請(qǐng)輸入'+oInput.attr('placeholder')+'!'; var errTxt = '請(qǐng)輸入正確的'+oInput.attr('placeholder')+'!'; var pattern; if(inputVal==""){ if(!telInput){ errFun(oErr,empTxt); } return false; }else { switch (oType){ case 'login_mobile': pattern = /^1[3456789]\d{9}$/; if(inputVal.length==11) { $.ajax({ url: '/login/checkmobile', type: "post", dataType: "json", data: { mobile: inputVal, etag: oEtag, page_ur: window.location.href, page_referer: document.referrer }, success: function (data) { } }); } break; case 'login_yzm': pattern = /^\d{6}$/; break; } if(oType=='login_mobile'){ } if(!!validateFun(pattern,inputVal)){ errFun(oErr,'') if(telInput){ $('.getcheckcode').removeClass('dis'); } }else { if(!telInput) { errFun(oErr, errTxt); }else { $('.getcheckcode').addClass('dis'); } return false; } } return true; } function errFun(obj,msg) { obj.html(msg); if(msg==''){ $('.login_submit').removeClass('dis'); }else { $('.login_submit').addClass('dis'); } } function validateFun(pat,val) { return pat.test(val); }