Python Pythonでのリスト操作 リストAにリストBを追加するlistA = listB = newList = listA + listBprint(newList)# リストAからリストBを削除するラムダ式を使っている。listA = listB = listA = l... 2020.05.27 Python