Python Pandas Index.dtype_str
Pandas Index是一个不可变的ndarray,实现了一个有序的、可切分的集合。它是存储所有pandas对象的轴标签的基本对象。
Pandas Index.dtype_str属性以字符串形式返回给定索引对象的基础数据的数据类型(dtype)。
语法: Index.dtype_str
参数:无
返回 : dtype为一个字符串
例子#1:使用Index.dtype_str属性来查找给定Index对象的底层数据的dtype,作为一个字符串。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index(['Jan', 'Feb', 'Mar', 'Apr', 'May'])
# Print the index
print(idx)
现在我们将使用Index.dtype_str属性来查找给定系列对象的底层数据的数据类型,作为一个字符串。
# return the dtype as a string
result = idx.dtype_str
# Print the result
print(result)
正如我们在输出中看到的,Index.dtype_str属性已经将给定的Index对象的底层数据返回为一个字符串。
示例#2 :使用Index.dtype_str属性来查找给定Index对象的底层数据的dtype,作为一个字符串。
# importing pandas as pd
import pandas as pd
# Creating the index
idx = pd.Index([100, 200, 142, 88, 124])
# Print the index
print(idx)
现在我们将使用Index.dtype_str属性来查找给定系列对象的底层数据的数据类型,作为一个字符串。
# return the dtype as a string
result = idx.dtype_str
# Print the result
print(result)
正如我们在输出中看到的,Index.dtype_str属性已经将给定的Index对象的底层数据返回为一个字符串。