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

列表综合

时间:2018-02-04 15:34:42      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:使用   class   python   file   for   div   一个   nbsp   com   

 

在很多时候,我们都是使用循环来处理列表中的每一个元素,而使用列表综合可以用一种更加精确、简洁、清楚的方法完成相同的工作。

#!/usr/bin/python
# Filename: list_comprehension.py

listone = [2, 3, 4]
listtwo = [2*i for i in listone if i > 2]
print listtwo

现在明白了吧,但是结果里面,2 是不存在的。只有后两位

列表综合

标签:使用   class   python   file   for   div   一个   nbsp   com   

原文地址:https://www.cnblogs.com/sakura3/p/8413084.html

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