首頁  >  文章  >  後端開發  >  python字典中如何一鍵多值的寫入?

python字典中如何一鍵多值的寫入?

coldplay.xixi
coldplay.xixi原創
2020-06-23 13:50:065921瀏覽

python字典中如何一鍵多值的寫入?

python字典中如何一鍵多值的寫入?

python字典中一鍵多值寫入的方法:

1、循環寫入字典key、value、刪除指定的鍵值對:

原始文字'jp_url.txt'每行元素以逗號分隔:

host_key,product_id,product_name,cont_start,cont_end
ah2.zhangyue.com,100002,掌阅,bookId=,&startChapterId
ih2.ireader.com,100002,掌阅,bid=,&
www.ireader.com,100002,掌阅,&bid=,&cid
m.zhangyue.com,100002,掌阅,readbook/,/
c13.shuqireader.com,100003,书旗,bookId=,&chapterId
t.shuqi.com,100003,书旗,bid/,/cid
想要得到:
{‘100002’:‘product_name’.......}

程式碼如下:

def makeDict():
    fileRead=open('jp_url.txt','rb')
    lines=fileRead.readlines()
    read_dict={}#定义字典
    for line in lines:
        line_list=line.split(',')#每行按逗号分隔成列表
        id=line_list[1]#取到id
        name=line_list[2]#取到name
        read_dict[id]=name#此处关键产生键值对,其中key是id
    read_dict.pop('product_id')#删除key为‘product_id’的键值对
    return read_dict
read_dict=makeDict()

2、循環寫入一鍵對多值:

其中格式{key:[value1,value2,...]}

#文字txt格式如下:

  • ##guaguashipinliaotianshi| .guagua.cn,

  • guaguashipinliaotianshi|iguagua.net,

  • guaguashipinliaotianshi|.17guagua.com,

  • jiuxiumeinvzhibo|.69xiu.com,
  • nbazhibo|.estream.cn,
  • youbo|yb.sxsapp.com,


其中第一列的名字有重複想要一個名字對應多個結果,程式碼如下:

def makehostDict():
    host_dict={}
    f_allhost=open('xml_host.txt','rb')
    lines=f_allhost.readlines()
    for line in lines:
        line_list=line.split('|')
        name=line_list[0]
        host=line_list[1].strip('\n')
        if host is not '':
            if  host_dict.has_key(name):
                host_dict.get(name).append(host)#此处为关键向字典里已经有的key(name)值后继续添加value(host)
            else:
                host_dict.setdefault(name,[]).append(host)#创建{name,[host]}value为列表的格式的字典。
    return host_dict
host_dict=makehostDict()
print host_dict
推薦教學:《

python影片教學###》###

以上是python字典中如何一鍵多值的寫入?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn