Để kiểm tra xem một Khoảng thời gian có được đóng ở phía bên trái hay không, hãy sử dụng thuộc tính khoảng thời gian.closed_left . Đầu tiên, hãy nhập các thư viện được yêu cầu -
import pandas as pd
Tập hợp khoảng thời gian sử dụng tham số "đóng" với giá trị "trái", tức là [0, 5) được mô tả bằng 0 <=x <5 khi đóng ='trái'
interval = pd.Interval(left=0, right=20, closed='left')
Hiển thị khoảng thời gian
print("Interval...\n",interval)
Kiểm tra xem khoảng thời gian có được đóng ở phía bên trái hay không
print("\nChecking whether the Interval is closed on the left...\n", interval.closed_left)
Ví dụ
Sau đây là mã
import pandas as pd # Interval set using the "closed" parameter with value "left" # i.e. [0, 5) is described by 0 <= x < 5 when closed='left' interval = pd.Interval(left=0, right=20, closed='left') # display the interval print("Interval...\n",interval) # display the interval length print("\nInterval length...\n",interval.length) # check whether the interval is closed on the left-side print("\nChecking whether the Interval is closed on the left...\n", interval.closed_left)
Đầu ra
Điều này sẽ tạo ra mã sau
Interval... [0, 20) Interval length... 20 Checking whether the Interval is closed on the left... True