用{}建立字典
>>> dict1 = {'李寧':'一切皆有可能', '耐克':'Just do it', '阿迪達斯':'Nothing is impossible', '嘉懿':'狗狗枢纠、滴滴像街、水水黎棠、大蟑螂~'}
>>> dict1['嘉懿']
'狗狗、滴滴镰绎、水水脓斩、大蟑螂~'
>>> dict2 = {1:'one', 2:'two', 3:'three'}
>>> dict2
{1: 'one', 2: 'two', 3: 'three'}
>>> dict2[2]
'two'
用關(guān)鍵字dict建立字典:因為dict只能接受一個參數(shù),所以要用括號全部括起來畴栖,偽裝成一個參數(shù)
>>> dict3 = dict((('F',70),('i',105),('s',115)))
>>> dict3
{'i': 105, 'F': 70, 's': 115}
>>> dict4 = dict(嘉懿 = '狗狗随静、滴滴、水水吗讶、大蟑螂~', 老婆 = '好兇')
>>> dict4
{'嘉懿': '狗狗燎猛、滴滴、水水照皆、大蟑螂~', '老婆': '好兇'}
未完待續(xù)重绷。膜毁。昭卓。。瘟滨。