pandas.StringDtype.storage# property StringDtype.storage[source]# The storage backend for this dtype. Can be either “pyarrow” or “python”. Examples >>> ser = pd.Series(["a", "b"]) >>> ser.dtype <StringDtype(na_value=nan)> >>> ser.dtype.storage 'pyarrow'