Python Pythonでのリスト操作 リストAにリストBを追加するlistA = listB = newList = listA + listBprint(newList)# リストから要素をインデックスで削除するlist = del list# リストAからリストBを削除する... 2020.05.27 Python