Python | Pandas Index.itemsize

Опубликовано: 27 Марта, 2022

Pandas Index - это неизменяемый ndarray, реализующий упорядоченный, нарезанный набор. Это базовый объект, который хранит метки осей для всех объектов pandas.

Pandas Index.itemsize attribute return the size of the dtype of the items of the underlying data in the given Index object.

Syntax: Index.itemsize

Parameter : None

Returns : return the size of dtype

Example #1: Use Index.itemsize attribute to find out the size of the dtype of the underlying data in the given Index object.

# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index(["Melbourne", "Sanghai", "Lisbon", "Doha", "Moscow"])
  
# Print the index
print(idx)

Выход :

Now we will use Index.itemsize attribute to find out the size of the dtype of the underlying data in the given Index object.

# return the size of dtype
result = idx.itemsize
  
# Print the result
print(result)

Output :

As we can see in the output, the Index.itemsize attribute has returned 8, indicating that the size of the dtype of the underlying data in the index object is 8.
 
Example #2 : Use Index.itemsize attribute to find out the size of the dtype of the underlying data in the given Index object.

# importing pandas as pd
import pandas as pd
  
# Creating the index
idx = pd.Index([900 + 3j, 700 + 25j, 620 + 10j, 388 + 44j, 900])
  
# Print the index
print(idx)

Выход :

Now we will use Index.itemsize attribute to find out the size of the dtype of the underlying data in the given Index object.

# return the size of dtype
result = idx.itemsize
  
# Print the result
print(result)

Output :

As we can see in the output, the Index.itemsize attribute has returned 8, indicating that the size of the dtype of the underlying data in the index object is 8.

Внимание компьютерщик! Укрепите свои основы с помощью базового курса программирования Python и изучите основы.

Для начала подготовьтесь к собеседованию. Расширьте свои концепции структур данных с помощью курса Python DS. А чтобы начать свое путешествие по машинному обучению, присоединяйтесь к курсу Машинное обучение - базовый уровень.