List includes any values
Checks if any element in values
is included in lst
.
- Check if any value in
values
is contained inlst
using afor
loop. - Return
True
if any one value is found,False
otherwise.
Checks if any element in values
is included in lst
.
values
is contained in lst
using a for
loop.True
if any one value is found, False
otherwise.