I am trying to drop the numbers as strings inside of this pandas data frame. The problem is that I don't know of a way to locate them.
df['Country'].unique()
returns the what is shown in the image above.
However, '437.2' in df['Country']
returns False
.
I would like to be able to create a list or set from 0-9, and search all strings in the column for numbers listed in the list/set, and finally drop the values where this condition is true.