mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-10-23 16:58:51 +00:00
6 lines
82 B
Python
6 lines
82 B
Python
def bit(x):
|
|
if x == 0:
|
|
return 0
|
|
else:
|
|
return 2 ** (x - 1)
|