list1 = ['Gryffindor', 'Ravenclaw', 'Hufflepuff', 'Slytherin']
list2 = ['Gryffindor', 'Ravenclaw']
checkif = item in List2 for item in List1
if check is True:
print("The list {} contains all elements of the list {}".format(List1, List2))
Why is this damn thing not working? Also is checkif = item in list2 for item in list1
a list comprehension or what?
Someone please correct my code, thanks.