List includes any values
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.
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.