对字典的遍历:
dicTmp = {"姓名":"张三", "性别":"男", "年龄":"20", "婚姻状况":"未婚"}
for index in range( len(dicTmp) ):
print "%s:%s" %(dicTmp.keys()[index], dicTmp.values()[index])
输出结果:
姓名:张三
性别:男
年龄:20
婚姻状况:未婚
对列表的遍历:
lstTmp = ["2000", "2001", "2006", "2008", "2010"]
for tmp in range( len(lstTmp) ):
print tmp
输出结果:
2000
2001
2006
2008
2010