Python | Pandas Index.dtype_str
Pandas Index - это неизменяемый ndarray, реализующий упорядоченный, нарезанный набор. Это базовый объект, который хранит метки осей для всех объектов pandas.
Pandas Index.dtype_str attribute return the data type (dtype) of the underlying data of the given Index object as a string.
Syntax: Index.dtype_str
Parameter : None
Returns : dtype as a string
Example #1: Use Index.dtype_str attribute to find the dtype of the underlying data of the given Index object as a string.
# importing pandas as pdimport pandas as pd # Creating the indexidx = pd.Index(["Jan", "Feb", "Mar", "Apr", "May"]) # Print the indexprint(idx) |
Выход :

Now we will use Index.dtype_str attribute to find the data type of the underlying data of the given series object as a string.
# return the dtype as a stringresult = idx.dtype_str # Print the resultprint(result) |
Выход :

As we can see in the output, the Index.dtype_str attribute has returned the data of the underlying data of the given Index object as a string.
Example #2 : Use Index.dtype_str attribute to find the dtype of the underlying data of the given Index object as a string.
Выход :

Now we will use Index.dtype_str attribute to find the data type of the underlying data of the given series object as a string.
# return the dtype as a stringresult = idx.dtype_str # Print the resultprint(result) |
Выход :

As we can see in the output, the Index.dtype_str attribute has returned the data of the underlying data of the given Index object as a string.
Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.
Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.