Skip to content

Instantly share code, notes, and snippets.

@mistyrinth
Created November 8, 2018 13:11
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 mistyrinth/b614c7b8f972c44923942d62b92638eb to your computer and use it in GitHub Desktop.
Save mistyrinth/b614c7b8f972c44923942d62b92638eb to your computer and use it in GitHub Desktop.
# ビットAND
print(11 & 14, "\n")
# ビットOR
print(10 | 12, "\n")
# ビットXOR
print(10 ^ 12, "\n")
# ビットNOT
print(~10, "\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment