我有python字典组合列表和字符串.
例如
dic = {"a": "11","c": [1,3,4], "b": [1,2,3], "g": "a"}
我想按数据类型对其进行排序.
喜欢
dic = {"a": "11", "g": "a", "c": [1,3,4], "b": [1,2,3]}
python sorting dictionary
dictionary ×1
python ×1
sorting ×1