Skip to content

Instantly share code, notes, and snippets.

@AlphaHot
Created May 15, 2020 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AlphaHot/54c3c8536bae84cb978586eda6bde6b9 to your computer and use it in GitHub Desktop.
Save AlphaHot/54c3c8536bae84cb978586eda6bde6b9 to your computer and use it in GitHub Desktop.
def cntBit(num):
return len(bin(num)) - 2
print(cntBit(0xFFFFFFFF)) # 32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment