mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-23 13:37: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)
|