重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
概念:可用于循环就是迭代
成都创新互联公司,专注为中小企业提供官网建设、营销型网站制作、自适应网站建设、展示型网站设计制作、网站建设等服务,帮助中小企业通过网站体现价值、有效益。帮助企业快速建站、解决网站建设与网站营销推广问题。#!/usr/bin/python
dic = {'a':1, 'b':2, 'c':3, 'd':4};
for key in dic:
print "key:", key;
for value in dic.itervalues():
print "value:", value;
for key in dic.iterkeys():
print "key:", key;
for key in dic.keys():
print "keys:", key;
for key,value in dic.iteritems():
print "iteritems:", key, value;
#check 检查dic是否为可迭代类型
from collections import Iterable #申明Iterable
print isinstance(dic, Iterable);
#enumerate
for x, y in enumerate(['a', 'b', 'c']):
print x, y
for x,y in [(1, 2), (3, 4), (5, 6)]:
print x,y
for x in [(1, 2), (3, 4), (5, 6)]:
print x
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。