581 B
581 B
title, tags, author, cover, firstSeen, lastUpdated
| title | tags | author | cover | firstSeen | lastUpdated |
|---|---|---|---|---|---|
| List includes any values | list | maciv | blog_images/forest-balcony.jpg | 2020-03-15T12:54:08+02:00 | 2020-11-02T19:28:05+02:00 |
Checks if any element in values is included in lst.
- Check if any value in
valuesis contained inlstusing aforloop. - Return
Trueif any one value is found,Falseotherwise.
def includes_any(lst, values):
for v in values:
if v in lst:
return True
return False
includes_any([1, 2, 3, 4], [2, 9]) # True
includes_any([1, 2, 3, 4], [8, 9]) # False