摘要: from collections import OrderedDict od = {'c': 1, 'a': 3, 'b': 5} for key, val in od.items(): print(key, val) is_od = {} OrderedDict(is_od) is_od['c'] 阅读全文
posted @ 2020-08-18 09:39 Fmaj-7 阅读(118) 评论(0) 推荐(0)