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