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)