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
これはどのように可能ですか?
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
これはどのように可能ですか?