I have a list
bulk_order
Out[230]:
[3 523
Name: order_id, dtype: object]
And I have an array. Its a series but I am accessing it with values
clusters_order_ids.values
Out[231]:
array([['520', '521', '524', '527', '532'], ['528'], ['531'],
['525', '526', '533'], ['519', '523', '529', '534', '535'], ['530']],
dtype=object)
Now I want to check whether list element 523
is present in above array and if it is there I want to delete it.
I am doing following in python
bulk_order in clusters_order_ids.values
But It gives me False
output