溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python字典fromkeys()方法中的坑

發(fā)布時(shí)間:2020-07-05 15:47:26 來(lái)源:網(wǎng)絡(luò) 閱讀:603 作者:Tyrant0532 欄目:編程語(yǔ)言
  • 自定操作中的fromkeys()方法接收兩個(gè)參數(shù),第一個(gè)參數(shù)為一個(gè)可迭代對(duì)象,作為返回字典的key,第二個(gè)參數(shù)為value,默認(rèn)為None,具體用法如下:

    li = [1,2,3]
    dic1 = dict.fromkeys(li)
    dic2 = dict.fromkeys(li,[])
    print(dic1)    # {1: None, 2: None, 3: None}
    print(dic2)    # {1: [], 2: [], 3: []}
  • 此時(shí)我為dic2中key為1的列表增加一個(gè)元素‘test’,如下:

    dic2[1].append('test')
    print(dic2)      # {1: ['test'], 2: ['test'], 3: ['test']}
  • 竟然把三個(gè)列表的值都給改了,這是為啥呢?先打印下他們的內(nèi)存地址

    print("dic2[1]:{}\ndic2[2]:{}\ndic2[3]:{}".format(id(dic2[1]),id(dic2[2]),id(dic2[3])))
    # dic2[1]:1714986428808
    # dic2[2]:1714986428808
    # dic2[3]:1714986428808
  • 原來(lái)它的所有鍵都指向了同一個(gè)內(nèi)存地址,這也就不難怪修改其中一個(gè)而引發(fā)聯(lián)動(dòng)了,因?yàn)楸举|(zhì)上只有一個(gè)列表。因此,在字典中定義不同的列表不要用fromkeys方法,還是老老實(shí)實(shí)定義吧

    dic2 =  {1: [], 2: [], 3: []}
    print(id(dic2[1]))  # 1657985662344
    print(id(dic2[2]))  # 1657986500680
    print(id(dic2[3]))  # 1657986501960
    dic2[1].append('test')
    print(dic2)
    # {1: ['test'], 2: [], 3: []}
  • 使用循環(huán)來(lái)產(chǎn)生多key的字典:

    dic2 = {}
    for k in range(10):
    dic2[k] = []
    print(dic2)   # {0: [], 1: [], 2: [], 3: [], 4: [], 5: [], 6: [], 7: [], 8: [], 9: []}
  • tips: fromkeys方法會(huì)返回一個(gè)新的字典,對(duì)原字典無(wú)影響
    dic1 = {1:2}
    dic2 = dic1.fromkeys([1,2,3],'test')
    print(dic1)    #  {1: 2}
    print(dic2)   # {1: 'test', 2: 'test', 3: 'test'}
向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI