1. Internet Explorer 7:总是用选项卡打开网页 2. Internet Explorer/Firefox:快速查找网站的域名所有人 3. Windows Live Writer:自动存储文章草稿 4. Internet Explorer/Firefox:始终使用Google文件服务打开Office文档 5. Flickr:将你的照片与Google Earth结合起来 6. Firefox 2.X:控制浏览器使用的内存空间 7. Vista中的Internet Explore
通用做法:迭代
以列表为例:
筛选出下列数字大于等于0的数
data = [2, 7, -4, -1, 3, 0, 8]
res = []
for i in data:
if i >= 0:
res.append(i)
print(res)
运行结果:
[2, 7, 3, 0, 8]
奇淫巧技——列表筛选
使用filter函数
随机生成一组正负数皆有的数,筛选出大于等于0的数
flilter(function or None, iterable)
from ra
本文记录了初学Python常用的两则实用技巧,分享给大家供大家参考之用。具体如下:
1.可变参数
示例代码如下:
>>> def powersum(power, *args):
... '''''Return the sum of each argument raised to specified power.'''
... total = 0
... for i in args:
... total += pow(i, power)
... retu