I have string 'NULL' values to drop. But I could not do it. Below is my data set and I need to drop row 1 and 4. How can I do that? Thank you.
df=pd.DataFrame({'A':['NULL','x2','x3','x4],'B':['w1','w2','w3','NULL']})
A B
NULL w1
x2 w2
x3 w3
x4 NULL
Thank you.