pandas.Interval.length#

Interval.length#

Return the length of the Interval.

The length is the distance between the right and left bounds, i.e. right - left. For time-like bounds this returns a timedelta or Timedelta.

See also

Interval.is_empty

Indicates if an interval contains no points.

Examples

>>> interval = pd.Interval(left=1, right=2, closed='left')
>>> interval
Interval(1, 2, closed='left')
>>> interval.length
1