27numpy float64 27 object has no attribute 27isnull 27

Solutions on MaxInterview for 27numpy float64 27 object has no attribute 27isnull 27 by the best coders in the world

showing results for - " 27numpy float64 27 object has no attribute 27isnull 27"
Lia
13 Oct 2016
1for element in my_series:
2    if type(element) == float and pd.isna(element):
3        print('do A')
4    else:
5        print('do B')