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
If you want to remove multiple object from a list. There are various ways to delete an object from a list
Try this code. a is list with all object, b is list object you want to remove.
example :
a = [1,2,3,4,5,6]
b = [2,3]
for i in b:
if i in a:
a.remove(i)
print(a)
the output is [1,4,5,6]
I hope, it will work for you