यह जाँचने के लिए कि अंतराल बाईं ओर, दाईं ओर, दोनों में बंद है या नहीं, अंतराल.बंद संपत्ति का उपयोग करें।
सबसे पहले, आवश्यक पुस्तकालयों को आयात करें -
import pandas as pd
"दोनों" मान के साथ "बंद" पैरामीटर का उपयोग करके बंद अंतराल सेट। एक बंद अंतराल (गणित में वर्ग कोष्ठक द्वारा निरूपित) में इसके समापन बिंदु होते हैं, # यानी बंद अंतराल [0, 5] की विशेषता 0 <=x <=5
है।interval = pd.Interval(left=0, right=20, closed='both')
अंतराल प्रदर्शित करें
print("Interval...\n",interval)
जांचें कि क्या अंतराल बाईं ओर, दाईं ओर, दोनों में बंद है या नहीं
print("\nChecking for the type of Interval...\n",interval.closed)
उदाहरण
निम्नलिखित कोड है
import pandas as pd # Closed interval set using the "closed" parameter with value "both" # A closed interval (in mathematics denoted by square brackets) contains its endpoints, # i.e. the closed interval [0, 5] is characterized by the conditions 0 <= x <= 5. interval = pd.Interval(left=0, right=20, closed='both') # display the interval print("Interval...\n",interval) # check whether the interval is closed on the left-side, right-side, both or neither print("\nChecking for the type of Interval...\n",interval.closed) # check for the existence of an element in an Interval # This shows that closed = both contains its endpoints print("\nThe left-most element exists in the Interval? = \n",0 in interval) print("\nThe right-most element exists in the Interval? = \n",20 in interval)
आउटपुट
यह निम्नलिखित कोड उत्पन्न करेगा
Interval... [0, 20] Checking for the type of Interval... both