Here we go again. So what I am trying to do is, let's say I have a list like this:
List = ['one','two','three']
And they are all assigned to numbers 0,1,2 for example:
'one': 0, 'two': 1, 'three': 2
What I want to do now is I want to remove an item from my list... let's say two
List.remove('two')
But if I do this, 'three' goes into the place of two and the total amount decreases by one. Is there a way I can remove two, but still keep the total amount of objects in a list, with the ones being removed just being replaced with 'None' or something similar?