码迷,mamicode.com
首页 > 其他好文 > 详细

list comprehensions列表解析

时间:2014-10-17 21:54:49      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   ar   使用   for   sp   div   

没有使用列表解析:

1 x =[]
2 for i in (1, 2, 3):
3     x.append(i)
4 
5 """
6 >>> x
7 [1, 2, 3]
8 """

 列表解析式:

1 x = [i for i in (1, 2, 3)]
2 """
3 >>> x
4 [1, 2, 3]
5 """

多重列表解析:

 1 x = [word.capitalize()
 2      for line in ("hello world?", "world!", "or not")
 3      for word in line.split()#空格分割
 4      if not word.startswith("or")]
 5 
 6 """
 7 >>> x
 8 [‘Hello‘, ‘World?‘, ‘World!‘, ‘Not‘]
 9 
10 """

 

创建一个字典和集合的方法也是一样的:

1 >>> {x: x.upper() for x in [hello, world]}
2 {world: WORLD, hello: HELLO}
3 
4 >>> {x.upper() for x in [hello, world]}
5 set([WORLD, HELLO])
6 >>> 

 

list comprehensions列表解析

标签:style   blog   color   io   ar   使用   for   sp   div   

原文地址:http://www.cnblogs.com/jypwn/p/4032084.html

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