représenter nan avec des pandas en python

import pandas as pd

if pd.isnull(float("Nan")):
  print("Null Value.")
Open Oystercatcher