for 循环遍历字典中的键值两种方法
摘要:
一、先获取key,然后通过dic[key]获取value import time dict = {'山东':'济南','河南':'郑州','江苏':'南京'} for key in dict: print(key) print(key,dict[key]) time.sleep(1) 江苏江苏 南京 阅读全文
posted @ 2018-07-14 17:44 糖糖大大 阅读(7073) 评论(0) 推荐(0) 编辑