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

Python中的推导式

时间:2018-08-28 17:06:49      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:item   列表   pytho   nbsp   python   字典推导式   range   div   items   

1.列表推导式

In [1]: [i**2 for i in range(1,5)]
Out[1]: [1, 4, 9, 16]

2.字典推导式

In [2]: {i:i**2 for i in range(1,5)}
Out[2]: {1: 1, 2: 4, 3: 9, 4: 16}

3.集合推导式

In [3]: { i for i in range(1,5)}
Out[3]: {1, 2, 3, 4}

4.生成器推导式

In [11]: items = (i**2 for i in range(1,5))

In [12]: for item in items:
    ...:     print(item)
    ...:
1
4
9
16

 

Python中的推导式

标签:item   列表   pytho   nbsp   python   字典推导式   range   div   items   

原文地址:https://www.cnblogs.com/litao2011/p/9549234.html

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