#!/usr/bin/python# -*- coding: UTF-8 -*-import timemyD = {1: 'a', 2: 'b'}for key, value in dict.items(myD): print key, value time.sleep(1) # 暂停 1 秒
本文共 203 字,大约阅读时间需要 1 分钟。
#!/usr/bin/python# -*- coding: UTF-8 -*-import timemyD = {1: 'a', 2: 'b'}for key, value in dict.items(myD): print key, value time.sleep(1) # 暂停 1 秒
转载于:https://www.cnblogs.com/kuihua/p/5531793.html