my question is pretty much as above:
if you have 2 lists as below, how can you check if all items in the first list are in the second list. eg
list_one=[1,2,3]
list_two=[1,2,3,4]
my current attempt is just "if all list_one in list_two:"
but this condition never seems to be filled and so nothing further takes place. Any help would be appreciated thanks :)