如何将键与字典 python 中的其他键交换(不与值交换)

How to swap key with other key in dictionary python (NOT with values)

我有一本字典 dct = {'one' : 1, 'two' : 2, 'three' : 3 },我想将 'one' 与 'two' 交换,如下所示。

dct = {'two' : 1, 'one' : 2, 'three' : 3}

有什么办法吗?

您可以使用 python 的典型多赋值交换模式:

dct["one"], dct["two"] = dct["two"], dct["one"]

试试这个:

temp = dct["one"]
dct["one"] = dct["two"]
dct["two"] = temp