码迷,mamicode.com
首页 > 编程语言 > 详细

python 循环技巧

时间:2015-04-26 15:22:09      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

摘自:超级无敌python教程

dict的循环:

>>> knights = {‘gallahad‘: ‘the pure‘, ‘robin‘: ‘the brave‘}
>>> for k, v in knights.items():
        ... 
        print k, v
        ...
gallahad the purerobin the brave

list的循环:

>>> for i, v in enumerate([‘tic‘, ‘tac‘, ‘toe‘]):
         ... 
         print i, v
         ...
0 tic
1 tac

多个list的循环:

>>> questions = [‘name‘, ‘quest‘, ‘favorite color‘]
>>> answers = [‘lancelot‘, ‘the holy grail‘, ‘blue‘]
>>> for q, a in zip(questions, answers):
         ... 
         print ‘What is your %s? It is %s.‘ % (q, a)
         ... 
What is your name? It is lancelot.
What is your quest? It is the holy grail.


python 循环技巧

标签:

原文地址:http://my.oschina.net/lcxidian/blog/406463

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!