Python 3:Filter、Map 和Reduce 实现的变化
在Python 2 中,filter、map 和reduce 的行为不同来自 Python 3 的对应版本。这源于 Python 3 中实现的几个重大更改:
列表上的视图和迭代器:
删除了 reduce():
示例用法:
Python 2 代码片段可以更新为 Python 3,如下所示:
def f(x): return x % 2 != 0 and x % 3 != 0 # **Filter:** Use list() to obtain a list of filtered values filtered_list = list(filter(f, range(2, 25))) # **Map:** Similarly, use list() to convert the iterator to a list cubed_list = list(map(lambda x: x ** 3, range(1, 11))) # **Reduce:** Use functools.reduce() or an explicit for loop from functools import reduce add_result = reduce(lambda x, y: x + y, range(1, 11)) print(filtered_list) # Output: [5, 7, 11, 13, 17, 19, 23] print(cubed_list) # Output: [1, 8, 27, 64, 125, 216, 343, 512, 729, 1000] print(add_result) # Output: 55
额外资源:
以上是Python 3 中的'filter”、'map”和'reduce”有何变化?的详细内容。更多信息请关注PHP中文网其他相关文章!