mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-07-20 01:29:31 +00:00
5 lines
103 B
Python
5 lines
103 B
Python
def bit(x):
|
|
if x < 1:
|
|
raise ValueError("x must be greater than 1")
|
|
return 2 ** (x - 1)
|