หากต้องการส่งคืนว่าองค์ประกอบทั้งหมดในดัชนีเป็นจริงหรือไม่ ให้ใช้ index.all() วิธีการในนุ่น
ขั้นแรก นำเข้าไลบรารีที่จำเป็น -
import pandas as pd
การสร้างดัชนี -
index = pd.Index([15, 25, 35, 45, 55])
แสดงดัชนี -
print("Pandas Index...\n",index)
คืนค่า True หากองค์ประกอบทั้งหมดในดัชนีเป็นจริง -
print("\nCheck whether all elements are True...\n",index.all())
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
import pandas as pd # Creating the index index = pd.Index([15, 25, 35, 45, 55]) # Display the index print("Pandas Index...\n",index) # Return a tuple of the shape of the underlying data print("\nA tuple of the shape of underlying data...\n",index.shape) # Return the number of elements in the Index print("\nNumber of elements in the index...\n",index.size) # Return True if all the elements in the index are True print("\nCheck whether all elements are True...\n",index.all())
ผลลัพธ์
สิ่งนี้จะสร้างรหัสต่อไปนี้ -
Pandas Index... Int64Index([15, 25, 35, 45, 55], dtype='int64') A tuple of the shape of underlying data... (5,) Number of elements in the index... 5 Check whether all elements are True... True