我有一本字典
{'a': 'first', 'b': 'second'}
但是,我需要不同顺序的字典:
{'b': 'second', 'a': 'first'}
做这个的最好方式是什么?
python dictionary
dictionary ×1
python ×1