I have dataframe df has column TX_order, when I tried to sum null values df.isnull().sum(axis=0)
The output was TX_order has 0 null values, however it has blank values. How can I show it or calculate this blank values to can remove it.
As in example below the TX_order has blank values but doesn't appear in the output
df
| A header | TX_order | 
|---|---|
| First | |
| Second | row | 
| Second | |
| Second | row | 
| Second | 
 
     
    