如何在Python中将字典更新为另一个嵌套字典?

时间:2019-06-25 07:29:06

标签: python dictionary

我正在尝试将具有新键的字典添加到另一本字典中,但是我不知道如何在python中进行编码

例如,如果我有两个这样的字典:

max_pool = nn.MaxPool2d(3, stride=2)
max_pool(torch.IntTensor(3,5,5).random_(0, 10))

我想使用新键“ C”将dic_C添加到dic_A作为嵌套字典,如下所示:

RuntimeError: _thnn_max_pool2d_with_indices_forward not supported on CPUType for Int

1 个答案:

答案 0 :(得分:0)

您需要在dic_A中添加一个值为dic_C的新密钥,如下所示。

dic_A['c'] = dic_C