发布于 1年前

Python 如何列表过滤

result = list(filter(lambda x: x % 2 == 0, [1, 2, 3, 4, 5, 6]))

print(result)
# [2, 4, 6]
©2020 edoou.com   京ICP备16001874号-3