- Python 3 教程
- Python3 基本数据类型
- Python3 解释器
- Python3 注释
- Python3 运算符
- Python3 数字(Number)
- Python3 字符串
- Python3 列表
- Python3 元组
- Python3 字典
- Python3 编程第一步
- Python3 条件控制
- Python3 循环语句
- Python3 迭代器与生成器
- Python3 函数
- Python3 数据结构
- Python3 模块
- Python3 输入和输出
- Python3 File(文件) 方法
- Python3 OS 文件/目录方法
- Python3 错误和异常
- Python3 面向对象
- Python3 标准库概览
- Python3 实例
- Python3 正则表达式
- Python CGI编程
- Python3 MySQL 数据库连接
- Python3 网络编程
- Python3 SMTP发送邮件
- Python3 多线程
- Python3 XML解析
- Python3 JSON 数据解析
- Python3 日期和时间
- Python3 range() 函数用法
- Python3 内置函数
Python filter() 函数
描述
filter() 函数用于过滤序列,过滤掉不符合条件的元素,返回由符合条件元素组成的新列表。
该接收两个参数,第一个为函数,第二个为序列,序列的每个元素作为参数传递给函数进行判,然后返回 True 或 False,最后将返回 True 的元素放到新列表中。
语法
以下是 filter() 方法的语法:
filter(function, iterable)
参数
- function -- 判断函数。
- iterable -- 可迭代对象。
返回值
返回列表。
实例
以下展示了使用 filter 函数的实例:
过滤出列表中的所有奇数:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
def is_odd(n):
return n % 2 == 1
newlist = filter(is_odd, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10])
print(newlist)
输出结果 :
[1, 3, 5, 7, 9]
过滤出1~100中平方根是整数的数:
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import math
def is_sqr(x):
return math.sqrt(x) % 1 == 0
newlist = filter(is_sqr, range(1, 101))
print(newlist)
输出结果 :
[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
上一篇:Python bool() 函数
下一篇:Python type() 函数
关注微信小程序
扫描二维码
程序员编程王