Answers for "valueerror: nan is not in list"

-1

how to check if a value is nan in python

# If you are doing any conditional operation and you want to check a if
# a single value is Null or not then you can use numpy's isna method.
np.isna(df[col][0])
Posted by: Guest on December-10-2021

Browse Popular Code Answers by Language