我想附加到字典中,例如
a={1:2}
a.update({2:4})
a.update({1,3})
I would like this to give
a ={1: (2,3), 2: 4}
如何才能做到这一点?没有追加。更新将其覆盖为
{1: 3, 2: 4}
吃鸡游戏
相关分类