python列表推导式求完全数_Python列表推导式(List comprehension)

列表推导式(list comprehension)简介

所谓list comprehension,就是一种很方便的遍历方式。而且除了方便之外,速度通常也会比for循环高出许多。

简单示例1:

#按行遍历一个文件,大写后输出

print [line.rstrip() for line in open('test.txt')]

#using if

#在list comprehension中使用if判断

print [line.rstrip() for line in open('test.txt') if line[0]=='n']

简单示例2:

testList = [1,2,3,4]

def mul2(x):

print x*2

[mul2(i) for i in testList]

#add some if logic

#仍然是添加if判断

print '-----if logic:'

[mul2(i) for i in testList if i%2==0]

list comprehension替代嵌套循环

常规的嵌套循:

#nested loop

for x in [1,2,3]:

for y in [1,2,3]:

z = x*y

print str(x)+'*'+str(y)+' is: '+str(z)

使用list comprehension代替以上代码:

print [x*y for x in [1,2,3] for y in [1,2,3]]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值