how to check dataframe column type code example
Example 1: how to check datatype of column in dataframe python
df['DataFrame Column'].dtypes
Example 2: find nan value in dataframe python
# to mark NaN column as True
df['your column name'].isnull()