Python Pythonでのリスト操作 リストAからリストBを削除するラムダ式を使っている。listA = listB = listA = list(filter(lambda x:x not in listB, listA))print(listA)# リストAとリストBの共通... 2020.05.27 Python