Let's say that i have:
usa = ["kebab","pizza", "hamburger"]
uk = ["kebab", "hamburger"]
How do i check if uk has all the meals that usa has?
I have tried this:
for i in usa:
if i not in str(uk):
print("UK doesn't serve %s" % i)
This works but only returns on missing item on uk's list. I need to know exactly what is missing. and this meal list might contain around 1000 or more records