0

listに存在しないの項目を 1 行でループさせたいother_list。このようなもの:

>>> list = ['a', 'b', 'c', 'd']
>>> other_list = ['a', 'd']
>>> for item in list not in other_list:
...     print item
...
b
c

これはどのように可能ですか?

4

4 に答える 4