pandas.Series.dtype — pandas 3.0.0.dev0+2100.gf496acffcc documentation (original) (raw)

property Series.dtype[source]#

Return the dtype object of the underlying data.

Examples

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