jumpserver/apps/common/utils/integer.py

6 lines
82 B
Python
Raw Normal View History

2022-11-11 07:04:31 +00:00
def bit(x):
2022-11-15 07:26:31 +00:00
if x == 0:
return 0
else:
return 2 ** (x - 1)