Panda Check Ein Zellwert ist keine Zahl
In [107]: pd.isnull(df.iloc[1,0])
Out[107]: True
Black Bat
In [107]: pd.isnull(df.iloc[1,0])
Out[107]: True
>>> df.A.str.isnumeric()
0 True
1 NaN
2 NaN
3 True
4 NaN
5 True
6 False
7 False
Name: A, dtype: object
# df.B.str.isnumeric()