Python, pandas, データフレーム データタイプの取得

In [1]: df.dtypes
Out[1]:
a   object
b    int64
c  float64
dtype: object

In [2]: df.a.dtypes
Out[2]: dtype('object')
In [3]: print(df.a.dtypes)
object