Files
jumpserver/apps/common/utils/integer.py
2022-11-15 15:26:31 +08:00

6 lines
82 B
Python

def bit(x):
if x == 0:
return 0
else:
return 2 ** (x - 1)