In Python, how can I remove an object from array of objects? Like this:
x = object() y = object() array = [x,y] # Remove x
I\'ve tried
You can remove a string from an array like this:
array = ["Bob", "Same"] array.remove("Bob")