Python中字典的使用

用{}建立字典

>>> 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'

用关键字dict建立字典:因为dict只能接受一个参数,所以要用括号全部括起来,伪装成一个参数

>>> dict3 = dict((('F',70),('i',105),('s',115)))

>>> dict3

{'i': 105, 'F': 70, 's': 115}

>>> dict4 = dict(嘉懿 = '狗狗、滴滴、水水、大蟑螂~', 老婆 = '好凶')

>>> dict4

{'嘉懿': '狗狗、滴滴、水水、大蟑螂~', '老婆': '好凶'}

未完待续。。。。。

你可能感兴趣的:(Python中字典的使用)