>>> dict1 = {'a':'1','b':'2','c':'3','d':'4'}
長(zhǎng)治ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來市場(chǎng)廣闊!成為成都創(chuàng)新互聯(lián)的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!>>> print('a的值是:',dict1['a'])
a的值是: 1
>>> dict4 = dict('我' = '快樂', 你 = '傷悲')
SyntaxError: keyword can't be an expression
>>> dict4['你'] = '改變悲傷'
>>> dict4
{'我': '快樂', '你': '改變悲傷'}
>>> dict4['他'] = '多加一個(gè)'
>>> dict4
{'我': '快樂', '你': '改變悲傷', '他': '多加一個(gè)'}
fromkeys(S[,v]) 創(chuàng)建并返回一個(gè)新的字典
>>> dict1 = {}
>>> dict1.fromkeys((1,2,3))
{1: None, 2: None, 3: None}
>>> dict1.fromkeys((1,2,3),'num')
{1: 'num', 2: 'num', 3: 'num'}
>>> dict1.fromkeys((1,3),'數(shù)字') #如果想用fromkeys修改鍵的值,不會(huì)成功會(huì)創(chuàng)建新的字典
{1: '數(shù)字', 3: '數(shù)字'}
訪問字典的方法
keys()
values()
items()
>>> dict2 = {}
>>> dict2 = dict2.fromkeys(range(2),'列子')
>>> dict2
{0: '列子', 1: '列子'}
>>> for eachkey in dict2.keys(): #values為'列子'
print(eachkey)
0
1
>>> for eachitem in dict2.items():
print(eachitem)
(0, '列子')
(1, '列子')
get() 查找方法
>>> dict2 = dict2.fromkeys(range(10),'列子')
>>> dict2
{0: '列子', 1: '列子', 2: '列子', 3: '列子', 4: '列子', 5: '列子', 6: '列子', 7: '列子', 8: '列子', 9: '列子'}
>>> dict2.get(5,'無') #如果有則返回值,如果沒有則返回'無'
'列子'
>>> dict2.get(10,'無')
'無'
>>> 5 in dict2 #成員操作符判定
True
>>> 10 in dict2
False
clean() 清空一個(gè)字典
>>> dict2.fromkeys(range(1),'快樂')
{0: '快樂'}
>>> dict2.clear()
>>> dict2
{}
copy()
>>> a = {1:'one',2:'two',3:'three',4:'four'}
>>> a
{1: 'one', 2: 'two', 3: 'three', 4: 'four'}
>>> b = a.copy()
>>> c = a
>>> b
{1: 'one', 2: 'two', 3: 'three', 4: 'four'}
>>> c
{1: 'one', 2: 'two', 3: 'three', 4: 'four'}
>>>
>>> c[5] = 'five'
>>> c
{1: 'one', 2: 'two', 3: 'three', 4: 'four', 5: 'five'}
>>> a
{1: 'one', 2: 'two', 3: 'three', 4: 'four', 5: 'five'}
>>> b
{1: 'one', 2: 'two', 3: 'three', 4: 'four'}
pop()
popitem() 隨機(jī)彈出
>>> a.pop(2)
'two'
>>> a
{1: 'one', 3: 'three', 4: 'four', 5: 'five'}
>>> a.popitem()
(5, 'five')
>>> a
{1: 'one', 3: 'three', 4: 'four'}
>>> a.setdefault(7,'seven')
'seven'
>>> a
{1: 'one', 3: 'three', 4: 'four', 7: 'seven'}
>>> b = {7:'SEVEN'}
>>> a
{1: 'one', 3: 'three', 4: 'four', 7: 'seven'}
>>> a.update(b)
>>> a
{1: 'one', 3: 'three', 4: 'four', 7: 'SEVEN'}
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。