长时间没有写python代码,生疏了,就忘了之前实现一些功能的写法。需要把常用的代码记录下来,方便查询和快速实现功能。
dic = {'a': 1, 'b': 2, 'c': 3} my_tuple_list = list(zip(dic.keys(), dic.values())) print(dic) print(my_tuple_list) # 输出 {'a': 1, 'b': 2, 'c': 3} [('a', 1), ('b', 2), ('c', 3)]