大马强 发表于 2022-1-20 22:18:00

cookbook 1.16

本帖最后由 大马强 于 2022-1-20 22:26 编辑


筛选序列中的元素
问题描述:
        我们想对字典中的值做删减或提取

一、推导式
# 列表推导式
datas = [-1, 2, 4, -2, 5, -4, 7, -3, 9, -6, 1, 0]
print()
#

# 生成器推导式
a = (i for i in datas if i > 0)
for i in a:
    print(i, end="")
print()

245791


二、filter函数
filter(fun, iterable)

[*]1、fun=None =>
[*] 2、fun!=None =>

datas = ['1', '2', '3', 'a', 'n/z', '4']


def is_int(data):
    try:
      var = int(data)
      return True
    except ValueError:
      return False


print(list(filter(is_int, datas)))

['1', '2', '3', '4']
三、compress函数

from itertools import compress
# compress(iterable, iterable_bool) 返回一个迭代器-
datas = [-1, 2, 4, -2, 5, -4, 7, -3, 9, -6, 1, 0]
filter_ =
print(filter_)
#
print(list(compress(datas, filter_)))


列表推导式与if else的搭配
    1、if
           
    2、if else
           

页: [1]
查看完整版本: cookbook 1.16