Last active
November 17, 2024 07:33
-
-
Save dr-dror/d89c55a16afb272419d822cb09808bfb to your computer and use it in GitHub Desktop.
Class vs. instance attributes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"* Inspired by https://stackoverflow.com/q/45284838/671013\n", | |
"* We will have three passes over the code below; each time changing something small in the class' definition" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"class Foo:\n", | |
" name=\"some name\"\n", | |
" tricks=list() # 1st step\n", | |
" def __init__(self, name):\n", | |
" self.name=name\n", | |
" # We will uncomment this shortly\n", | |
" self.tricks=[] # 2nd step\n", | |
" self.tricks.append(name)" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"f\"{id(Foo.tricks) = }\"" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"f1=Foo(\"hello world\")\n", | |
"f\"{f1.name = }\", f\"{f1.tricks = }\", f\"{id(f1.tricks) = }\"" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"f2=Foo(\"bye world\")\n", | |
"f\"{f2.name = }\", f\"{f2.tricks = }\", f\"{id(f2.tricks) = }\"" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"f\"{f1.name = }\", f\"{f1.tricks = }\"" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"f\"{id(Foo.tricks) = }\", f\"{id(f1.tricks) = }\", f\"{id(f2.tricks) = }\"" | |
] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": ".venv", | |
"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.12.2" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment