pandas.Series.dtypes — pandas 3.0.0rc0+33.g1fd184de2a documentation (original) (raw)

property Series.dtypes[source]#

Return the dtype object of the underlying data.

Examples

s = pd.Series([1, 2, 3]) s.dtypes dtype('int64')