Please dont give me minus. I want to ask a better method to solve this problem, because what I am doing now is becoming a huge burden for me.
Hier is my question: I have two lists. I want to make sure that none item from one list is in the other list.
In Python I have been working with the following lines... (Assuming List_s has 3 items.)
if List_s[0] not in List_big and List_s[1] not in List_big and List_s[2] not in List_big: #none item from List_s should be in List_big
do something
else:
pass
These lines were actually OK for me, till I suddenly realize that I have to work with lists with >200 length. And I have a lot of lists to compare.
So how could I change the code? Thank you very much for your help!