Skip to content

Instantly share code, notes, and snippets.

@davidbody
Created July 7, 2020 17:23
Show Gist options
  • Save davidbody/38173e597d6ca2b2e186d325bd8498a8 to your computer and use it in GitHub Desktop.
Save davidbody/38173e597d6ca2b2e186d325bd8498a8 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Python bitwise XOR (exclusive OR)\n",
"\n",
"The `^` operator does a bitwise XOR.\n",
"\n",
"That explains the weird example we saw in the notebook today.\n",
"\n",
"Here is the example again."
]
},
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [],
"source": [
"x = [1, 2, 3, 4, 5]"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[1, 2, 3, 4, 5]"
]
},
"execution_count": 2,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"x"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"[3, 0, 1, 6, 7]"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[x^2 for x in x]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"WTF? I thought I was squaring each number.\n",
"\n",
"Instead I was taking the XOR of each number with 2.\n",
"\n",
"Below we can see what was happening.\n",
"\n",
"First let's see the x values as binary."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['0001', '0010', '0011', '0100', '0101']"
]
},
"execution_count": 4,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[format(x, '04b') for x in x]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Here is 2 repeated 5 times in binary, followed by the XOR of x with 2."
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['0010', '0010', '0010', '0010', '0010']"
]
},
"execution_count": 5,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[format(2, '04b') for x in x]"
]
},
{
"cell_type": "code",
"execution_count": 6,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"['0011', '0000', '0001', '0110', '0111']"
]
},
"execution_count": 6,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"[format(x^2, '04b') for x in x]"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"You can verify that each value really is the exclusive OR of the bits from the original list."
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.3"
}
},
"nbformat": 4,
"nbformat_minor": 4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment