課程
/后端開發(fā)
/Python
/python必學(xué)模塊-collections
使用new_child()方法的打印效果是怎么回事?
2018-05-20
源自:python必學(xué)模塊-collections 8-1
正在回答
from?collections?import?* if?__name__?==?'__main__': ????print("hello?world") ????dict1={"hello":1,"world":2} ????dict2={"hello":3,"java":3} ????dict4={"hello":5,"java":5} ????dict3=ChainMap(dict1,dict2) ????print(dict3) ????#?maps:把ChainMap對(duì)象轉(zhuǎn)化為list對(duì)象,可以被訪問(wèn)和修改。 ????print(dict3.maps) ????#?new_child:在字典前插入一個(gè)新的字典,參數(shù)為空:插入一個(gè)空的字典。參數(shù)不為空,插入第一個(gè)位置。 ????#ChainMap({},?{'world':?2,?'hello':?1},?{'java':?3,?'hello':?3}) ????print(dict3.new_child()) ????#ChainMap({'java':?5,?'hello':?5},?{'world':?2,?'hello':?1},?{'java':?3,?'hello':?3}) ????print(dict3.new_child(dict4))
# new_child方法不會(huì)改變chain_map而使返回一個(gè)新的ChainMap
new_chain_map = chain_map.new_child({'aa':'aa', 'bb':'bb'})
for key, value in new_chain_map.items():
? ? print(key, value)
舉報(bào)
快速理解python中基于基礎(chǔ)數(shù)據(jù)結(jié)構(gòu)的高級(jí)數(shù)據(jù)結(jié)構(gòu),讓代碼更精簡(jiǎn)且高效。
1 回答ChainMap的new_child沒(méi)成功
4 回答namedtuple的_make方法,傳入字典的問(wèn)題
1 回答課程中說(shuō)法是否有誤
1 回答python2.7版本的tuple是沒(méi)有拆包用法的么
1 回答bobby老師無(wú)法從collections模塊中引入defaultdict函數(shù),幫忙看下
Copyright ? 2025 imooc.com All Rights Reserved | 京ICP備12003892號(hào)-11 京公網(wǎng)安備11010802030151號(hào)
購(gòu)課補(bǔ)貼聯(lián)系客服咨詢優(yōu)惠詳情
慕課網(wǎng)APP您的移動(dòng)學(xué)習(xí)伙伴
掃描二維碼關(guān)注慕課網(wǎng)微信公眾號(hào)
2018-06-05
2019-05-01
# new_child方法不會(huì)改變chain_map而使返回一個(gè)新的ChainMap
new_chain_map = chain_map.new_child({'aa':'aa', 'bb':'bb'})
for key, value in new_chain_map.items():
? ? print(key, value)