jumpserver/apps/common/utils/integer.py

5 lines
103 B
Python
Raw Normal View History

2022-11-11 07:04:31 +00:00
def bit(x):
2022-11-16 11:35:16 +00:00
if x < 1:
raise ValueError("x must be greater than 1")
return 2 ** (x - 1)