Appearance
检查列表中是否存在至少一个元素满足指定条件。
from usepy import some
lst
fn
>>> some([1, 2, 3, 4], lambda x: x > 3) True