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