I am using Python Pandas.
For example, I have a dataframe as follows
index, name, acct_no, city
1, alex, 10011, huntington
2, rider, 100AB, charleston
3, daniel, A1009, bonn
4, rice, AAAA1, new york
5, ricardo, 12121, london
From this dataset, I would like to get ONLY those records who donot have any string in the acct_no column.
So, I would like to get the following result from the above dataset. In the following result, there is no string in the values of the acct_no column.
index, name, acct_no, city
1, alex, 10011, huntington
5, ricardo, 12121, london
Which code will give me such result?