Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

Python - ตรวจสอบว่าดัชนี Pandas ประกอบด้วยจำนวนเต็มเท่านั้นหรือไม่


หากต้องการตรวจสอบว่าดัชนี Pandas เป็นจำนวนเต็มเท่านั้นหรือไม่ ให้ใช้ index.is_integer() วิธีการในแพนด้า ขั้นแรก นำเข้าไลบรารีที่จำเป็น -

import pandas as pd

การสร้างดัชนีนุ่น -

index = pd.Index([5, 10, 25, 50, 75, 100, 125, 150])

แสดงดัชนีหมีแพนด้า −

print("Pandas Index...\n",index)

ตรวจสอบว่าค่าดัชนีมีเฉพาะ ints หรือไม่ -

print("\nIndex values only consists of integers?\n",index.is_integer())

ตัวอย่าง

ต่อไปนี้เป็นรหัส -

import pandas as pd

# Creating Pandas index
index = pd.Index([5, 10, 25, 50, 75, 100, 125, 150])

# Display the Pandas index
print("Pandas Index...\n",index)

# Return the number of elements in the Index
print("\nNumber of elements in the index...\n",index.size)

# Return the dtype of the data
print("\nThe dtype object...\n",index.dtype)

# check whether index values has only ints
print("\nIndex values only consists of integers?\n",index.is_integer())

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

Pandas Index...
Int64Index([5, 10, 25, 50, 75, 100, 125, 150], dtype='int64')

Number of elements in the index...
8

The dtype object...
int64

Index values only consists of integers?
True