পান্ডাস সূচকে শুধুমাত্র পূর্ণসংখ্যা রয়েছে কিনা তা পরীক্ষা করতে, 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