您好,登錄后才能下訂單哦!
循環寫入字典key、value、刪除指定的鍵值對:
原文本‘jp_url.txt'每行元素以逗號分隔:
host_key,product_id,product_name,cont_start,cont_end ah3.zhangyue.com,100002,掌閱,bookId=,&startChapterId ih3.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()
循環寫入一鍵對多值:
其中格式{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字典循環添加一鍵多值的用法實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持億速云。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。