print out the nan values in a pd df code example
Example 1: find nan values in a column pandas
df.isnull().values.any()
Example 2: represent NaN with pandas in python
import pandas as pd
if pd.isnull(float("Nan")):
print("Null Value.")
df.isnull().values.any()
import pandas as pd
if pd.isnull(float("Nan")):
print("Null Value.")