I would like to create in python a script that remove multiple object, inserted by the user, from a list.
I tried this:
list = ["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26"]
print= ("do you want to remove something?")
removed = input()
list.remove(removed)
But while doing this I can't remove more than one element. Is there any way to this but also being able to remove two or more elemets?