यह जांचने के लिए कि कोई तत्व अंतराल से संबंधित है या नहीं, संपत्ति में उपयोग करें। सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
एक समय अंतराल बनाएं
interval = pd.Interval(left=0, right=10)
अंतराल प्रदर्शित करें
print("Interval...\n",interval)
अंतराल में किसी तत्व के अस्तित्व की जाँच करें
print("\nThe specific element exists in the Interval? = \n",6 in interval)
उदाहरण
निम्नलिखित कोड है
import pandas as pd # Create a time interval interval = pd.Interval(left=0, right=10) # display the interval print("Interval...\n",interval) # display the interval length print("\nInterval length...\n",interval.length) # check for the existence of an element in an Interval print("\nThe specific element exists in the Interval? = \n",6 in interval)
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा
Interval... (0, 10] Interval length... 10 The specific element exists in the Interval? = True