From aaf3627302a3b4ae8aa5281a024fc99560b7b6c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Fri, 28 Jun 2019 03:00:22 +0200 Subject: [PATCH] Bitwise --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5e90965..4ec5064 100644 --- a/README.md +++ b/README.md @@ -483,7 +483,7 @@ shuffle() '0b' = bin() # Or: '0x' = hex() ``` -### Bitwise +### Bitwise Operators ```python = & # And = | # Or diff --git a/index.html b/index.html index 9dc7c35..fd7e659 100644 --- a/index.html +++ b/index.html @@ -540,7 +540,7 @@ shuffle(<list>) <int> = int('<bin>', 2) # Or: int('<hex>', 16) '0b<bin>' = bin(<int>) # Or: '0x<hex>' = hex(<int>) -

Bitwise

+

Bitwise Operators

<int>     = <int> & <int>      # And
 <int>     = <int> | <int>      # Or
 <int>     = <int> ^ <int>      # Xor (0 if both bits equal)