jumpserver/apps/common/utils/integer.py
2022-11-16 19:35:16 +08:00

5 lines
103 B
Python

def bit(x):
if x < 1:
raise ValueError("x must be greater than 1")
return 2 ** (x - 1)