If I have a dataframe with the following columns:
1. NAME object 2. On_Time object
Using dtype will give you desired column's data type:
dtype
dataframe['column1'].dtype
if you want to know data types of all the column at once, you can use plural of dtype as dtypes:
dataframe.dtypes