成语大全网 - 汉语词典 - Python字典嵌套为什么不需要使用.items():?

Python字典嵌套为什么不需要使用.items():?

那就嵌套操作呗

先取键2的值,是一个字典;再对该字典做pop操作。

a = {1:{1:'a',2:'b',3:'c'}, 2:{4:'d',5:'e',6:'f'}}a[2].pop(4)print a[2]a[2][5] = 'W'print a[2]