pandas.api.types.is_string_dtype#

pandas.api.types.is_string_dtype(arr_or_dtype)[源代码][源代码]#

检查提供的数组或dtype是否为字符串dtype。

如果传递的数组具有对象数据类型,则必须将元素推断为字符串。

参数:
arr_or_dtype类似数组或数据类型

要检查的数组或数据类型。

返回:
布尔值

数组或dtype是否为字符串dtype。

参见

api.types.is_string_dtype

检查提供的数组或dtype是否为字符串dtype。

例子

>>> from pandas.api.types import is_string_dtype
>>> is_string_dtype(str)
True
>>> is_string_dtype(object)
True
>>> is_string_dtype(int)
False
>>> is_string_dtype(np.array(["a", "b"]))
True
>>> is_string_dtype(pd.Series([1, 2]))
False
>>> is_string_dtype(pd.Series([1, 2], dtype=object))
False