func in_range_exclusive(x: int, a: int, b: int) -> int: return a < x and x < b func in_range_exclusive_lower(x: int, a: int, b: int) -> int: return a <= x and x < b func in_range_exclusive_higher(x: int, a: int, b: int) -> int: return a < x and x <= b
or share this direct link: