def new_contained(a,b): boo = False c = [c for c in a] d = [i for i in b] if len(c)<=len(d): for i in c: if i in d: boo = True return boo