说我有这样的字典:
my_dict = {2:3, 5:6, 8:9}
有没有办法可以切换键和值来获得:
{3:2, 6:5, 9:8}
python dictionary key
dictionary ×1
key ×1
python ×1