union method

union(self, range)

Union another range.

Returns


def union(self, range):
    ...
ParameterTypeDescription
rangestrThe range.

union(self, union_range)

Union another range.

Returns


def union(self, union_range):
    ...
ParameterTypeDescription
union_rangeUnionRangeThe range.

union(self, ranges)

Union the ranges.

Returns


def union(self, ranges):
    ...
ParameterTypeDescription
rangeslistThe ranges.

See Also