หากต้องการส่งคืนว่าองค์ประกอบทั้งหมดในดัชนีเป็นจริงหรือไม่ ให้ใช้ index.any() วิธีการในนุ่น
ขั้นแรก นำเข้าไลบรารีที่จำเป็น -
import pandas as pd
การสร้างดัชนีด้วยองค์ประกอบ True (ไม่ใช่ศูนย์) และ False (ศูนย์) บางส่วน -
index = pd.Index([15, 25, 0, 0, 55])
แสดงดัชนี -
print("Pandas Index...\n",index)
คืนค่า True หากองค์ประกอบใด ๆ ในดัชนีเป็น True:−
print("\nCheck whether any element in the index is True...\n",index.any())
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
import pandas as pd # Creating the index with some True (non-zero) and False (zero) elements index = pd.Index([15, 25, 0, 0, 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 any element in the index is True print("\nCheck whether any element in the index is True...\n",index.any())
ผลลัพธ์
สิ่งนี้จะสร้างรหัสต่อไปนี้ -
Pandas Index... Int64Index([15, 25, 0, 0, 55], dtype='int64') A tuple of the shape of underlying data... (5,) Number of elements in the index... 5 Check whether any element in the index is True... True