Answers for "'numpy.float64' object has no attribute 'isnull'"

0

'numpy.float64' object has no attribute 'isnull'

for element in my_series:
    if type(element) == float and pd.isna(element):
        print('do A')
    else:
        print('do B')
Posted by: Guest on August-14-2020

Code answers related to "'numpy.float64' object has no attribute 'isnull'"

Python Answers by Framework

Browse Popular Code Answers by Language