In the pandas I use df[df['Column']!='value']
to get desired column values.
But how can I use it for multiple condition?
I used this
import numpy as np
df[df['Column']!=np.nan and df['Column']!='value_x' and df['Column']!='value_y']
But it is throwing
ValueError: The truth value of a Series is ambiguous. Use a.empty, a.bool(), a.item(), a.any() or a.all().